其他分享
首页 > 其他分享> > 如何从Android上的String正确解码PDF?

如何从Android上的String正确解码PDF?

作者:互联网

我正在尝试创建一个应用程序,将一些PDf文件存储为数据库中的base64编码字符串,然后解码它们并发送它们(使用Intent打开其他PDF阅读器).
但有些东西不能正常工作.我知道字节数组在存储之前和之后与编码String相同,所以这不是问题.
我认为问题是在创建文件以打开意图的过程中的某个地方,但我不确定.

创建字符串:

 byte[] b = Files.toByteArray(pdf);
 String encodedFile = Base64.encodeToString(b, Base64.DEFAULT);

pdf是我从中得到的文件:

else if (requestCode == PICK_PDF_REQUEST && resultCode == RESULT_OK && data != null && data.getData() != null)
    {
        Uri uri = data.getData();
        try {
            String fileName = uri.toString();
            fileName = fileName.substring(fileName.length()-10);
            service.addPDF(order, fileName, new File(uri.getPath()));
        } catch (IOException e) {
            e.printStackTrace();
        }
        updateFileList();
    }

从字符串获取文件:

 case PDF:
    try {
        byte[] pdfAsBytes = Base64.decode(file.getContent(), Base64.DEFAULT);
        File dir = getStorageDir();
        File pdffile = new File(dir, file.getName());
        if(!pdffile.exists())
        {
            pdffile.getParentFile().mkdirs();
            pdffile.createNewFile();
        }
        Files.write(pdfAsBytes, pdffile);
        Intent pdfIntent = new Intent(Intent.ACTION_VIEW);
        pdfIntent.setDataAndType(Uri.fromFile(pdffile), "application/pdf");
        pdfIntent.setFlags(Intent.FLAG_ACTIVITY_NO_HISTORY);
        startActivity(pdfIntent);
    } catch (IOException e) {
        e.printStackTrace();
    }

    break;

此代码运行时没有错误,但PDF查看器无法显示该文件.我试过几个观众.我怀疑生成的文件

解决方法:

结果我需要保存到外部存储而不是dir.

File dir = getStorageDir();

应该

File dir = Environment.getExternalStorageDirectory();

然后它工作.

标签:android,pdf,android-intent,android-file
来源: https://codeday.me/bug/20190711/1434262.html