我必须开发一个以pdf格式读取pdf文件的应用程序,并且应该只在应用程序中读取pdf文件。我想知道还有一件事是可以使用itext.jar Android应用程序。
答案 0 :(得分:3)
为Android开发PDF阅读器并不是很简单,因此我建议您通过Google Docs Reader在线阅读此PDF文件
WebView webview = (WebView) findViewById(R.id.webview);
webview.getSettings().setJavaScriptEnabled(true);
String pdf = "http://www.example.com/example.pdf";//url to pdf file
webview.loadUrl("http://docs.google.com/gview?embedded=true&url=" + pdf);
这可能不是你想要的东西,但仍希望它能在某一天帮助你。
但是,某些Android PDF API为http://code.google.com/p/android-pdf/source/browse/#svn/trunk/src/org/broncho/pdfreader和http://andpdf.svn.sourceforge.net/viewvc/andpdf/trunk/AndroidPdfViewer/src/com/sun/
您还可以查看有关同一问题的Android PDF reader from scratch
的SO讨论答案 1 :(得分:1)
你可以下载PDFbox API来阅读android中的PDF试试这个链接:http://pdfbox.apache.org/download.html#pdfbox
答案 2 :(得分:0)
您可以使用其中一个开源PDF阅读器(例如:XPDF)并为Android编译。