-2

我从服务器收到 pdf 文件。我想以只读方式打开该 pdf 文件。没有编辑选项。所以我不能使用文件操作。

哪个图书馆最适合阅读pdf文件?

如何在java中读取pdf文件?

4

1 回答 1

0

使用PDFBOXiText

我在使用 PDFBOX 时使用下面的代码。

try
    {
    document = PDDocument.load(f);
    document.getClass();
if( document.isEncrypted() )
{
try
{
document.decrypt( "" );
}
catch( InvalidPasswordException e )
{
System.err.println( "Error: Document is encrypted with a password." );
System.exit( 1 );
}
}

PDFTextStripperByArea stripper = new PDFTextStripperByArea();
stripper.setSortByPosition( true );
PDFTextStripper stripper = new PDFTextStripper();
String st = stripper.getText(document);

System.out.println(st);
于 2013-04-16T11:35:10.523 回答