ICode9

精准搜索请尝试: 精确搜索
首页 > 其他分享> 文章详细

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

2019-07-11 17:27:14  阅读:194  来源: 互联网

标签:android pdf android-intent android-file


我正在尝试创建一个应用程序,将一些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

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有