Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
L
Lab4
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
9731094
Lab4
Commits
0415ffb4
Commit
0415ffb4
authored
Mar 10, 2019
by
--global
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lab4 final final final
parent
5bc8c82e
Pipeline
#323
failed with stages
Changes
2
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
29 additions
and
10 deletions
+29
-10
TestFile.pdf
src/TestFile.pdf
+0
-0
gg.java
src/gg.java
+29
-10
No files found.
src/Test.pdf
→
src/Test
File
.pdf
View file @
0415ffb4
File moved
src/gg.java
View file @
0415ffb4
import
com.itextpdf.text.pdf.PdfReader
;
import
com.itextpdf.text.pdf.PdfReader
;
import
com.itextpdf.text.pdf.parser.PdfTextExtractor
;
import
com.itextpdf.text.pdf.parser.PdfTextExtractor
;
import
java.io.File
;
import
java.io.FileOutputStream
;
import
java.io.OutputStream
;
import
com.itextpdf.text.Document
;
import
com.itextpdf.text.Paragraph
;
import
com.itextpdf.text.pdf.PdfWriter
;
public
class
gg
{
public
class
gg
{
public
static
void
main
(
String
[]
args
)
{
public
static
void
main
(
String
[]
args
)
{
try
{
try
{
PdfReader
pdfReader
=
new
PdfReader
(
"test.pdf"
);
Document
document
=
new
Document
(
);
int
pages
=
pdfReader
.
getNumberOfPages
();
System
.
out
.
println
(
pages
);
for
(
int
i
=
1
;
i
<=
pages
;
i
++)
{
String
pageContent
=
PdfTextExtractor
.
getTextFromPage
(
pdfReader
,
i
);
System
.
out
.
println
(
"Content on Page "
+
i
+
": "
+
pageContent
);
}
}
catch
(
Exception
e
)
OutputStream
outputStream
=
{
e
.
printStackTrace
();
new
FileOutputStream
(
new
File
(
"F:\\aaa.pdf"
));
}
PdfWriter
.
getInstance
(
document
,
outputStream
);
document
.
open
();
document
.
add
(
new
Paragraph
(
"Hello world, "
+
"this is a test pdf aaa bbbbrrrrrrrrrrrrr file."
));
document
.
close
();
outputStream
.
close
();
System
.
out
.
println
(
"Pdf created successfully."
);
}
catch
(
Exception
e
)
{
e
.
printStackTrace
();
}
}
}
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment