从Webservice下载并查看Android应用程序中的PDF

时间:2014-12-17 11:32:05

标签: android web-services pdf bufferedreader filereader

我正在尝试在Android应用程序中下载并打开PDF文件,即不使用手机上安装的任何其他应用程序(pdf viewer等)。

请告诉我有可能吗?

到目前为止,我所做的是:

PdfViewerActivity.java

public class PDFViewerActivity extends Activity {
    private Button mDownLoadPdf;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.pdfviewer_activity);
    }

    public void downloadPDF(View v)
    {
//        new DownloadFile().execute("http://maven.apache.org/maven-1.x/maven.pdf", "maven.pdf");
        new DownloadFile().execute("http://dev-hop-docs.seechangehealth.com/SitePages/PDFLoader.aspx?test=abc");
        Toast.makeText(this,"Download finished,Viewing PDF...",Toast.LENGTH_SHORT).show();
        view();
    }

    public void view()
    {
        File pdfFile = new File(Environment.getExternalStorageDirectory() + "/testthreepdf/" + "privacy notice.pdf");  // -> filename = maven.pdf
        Uri path = Uri.fromFile(pdfFile);
        Intent pdfIntent = new Intent(Intent.ACTION_VIEW);
        pdfIntent.setDataAndType(path, "application/pdf");
        pdfIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);

        try{
            startActivity(pdfIntent);
        }catch(ActivityNotFoundException e){
            Toast.makeText(PDFViewerActivity.this, "No Application available to view PDF", Toast.LENGTH_SHORT).show();
        }
    }

    private class DownloadFile extends AsyncTask<String, Void, Void> {

        @Override
        protected Void doInBackground(String... strings) {
            String fileUrl = strings[0];   // -> http://maven.apache.org/maven-1.x/maven.pdf
//            String fileName = strings[1];  // -> maven.pdf
            String fileName = "privacy notice.pdf";
            String extStorageDirectory = Environment.getExternalStorageDirectory().toString();
            File folder = new File(extStorageDirectory, "testthreepdf");
            folder.mkdir();

            File pdfFile = new File(folder, fileName);

            try{
                pdfFile.createNewFile();
            }catch (IOException e){
                e.printStackTrace();
            }
            FileLoader.downloadFile(fileUrl, pdfFile);
            return null;
        }
    }
}

这是我的FileLoader.java

public class FileLoader {
    private static final int  MEGABYTE = 1024 * 1024;

    public static void downloadFile(String fileUrl, File directory){
        try {

            URL url = new URL(fileUrl);
            HttpURLConnection urlConnection = (HttpURLConnection)url.openConnection();
            urlConnection.setRequestMethod("GET");
//            urlConnection.setDoOutput(true);
//            urlConnection.connect();

            InputStream inputStream = urlConnection.getInputStream();
            FileOutputStream fileOutputStream = new FileOutputStream(directory);
            int totalSize = urlConnection.getContentLength();

            byte[] buffer = new byte[MEGABYTE];
            int bufferLength = 0;
            while((bufferLength = inputStream.read(buffer))>0 ){
                fileOutputStream.write(buffer, 0, bufferLength);
            }
            fileOutputStream.close();
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        } catch (MalformedURLException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}

使用上面的代码,我收到以下错误:

无效的PDF格式。

但是当我在PC浏览器上粘贴这个webservice url时,它会打开一个pdf。

请告诉我我做错了什么。或者还有其他方法可以实现它。

3 个答案:

答案 0 :(得分:1)

  

我正在尝试在Android应用程序中下载并打开PDF文件,即不使用手机上安装的任何其他应用程序(pdf viewer等)。

不符合您问题中的代码。您正专门尝试在“手机上安装的其他应用程序(pdf查看器等)”中打开PDF文件。

  

使用上面的代码,我收到以下错误:无效的PDF格式。

该文件尚不存在。在view() onPostExecute()之前,您需要等待AsyncTask逻辑。现在,您正在尝试view()文件,同时在后台线程中进行下载。

我还建议您在flush()之前调用getFD().sync()FileOutputStream,以确保在尝试启动之前将所有字节写入磁盘第三方PDF查看器。

答案 1 :(得分:1)

要实现目标,您可以使用Android版MuPDF库。但首先你需要下载PDF文件。您也可以使用支持PDF,DjVu,EPUB,RTF等的EBookDroid库。

答案 2 :(得分:0)

@shruti是的,可以在没有使用pdfrenderer的第三方应用程序的情况下阅读android应用程序中的pdf。我已经将这个谷歌样本用于我的应用程序 https://github.com/googlesamples/android-PdfRendererBasic 我希望它会有所帮助。