如何解码base64字符串并将其转换为pdf / jpg并将其保存在存储中

前端之家收集整理的这篇文章主要介绍了如何解码base64字符串并将其转换为pdf / jpg并将其保存在存储中前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想解码一个base64字符串并将其转换为一个文件(如pdf / jpg)并将其保存到设备,例如在(/storage/emulated/0/Download/file.pdf)中.

对于编码文件,我使用此代码

File originalFile = new File("/mnt/sdcard/download/file.pdf");
    String encodedBase64 = null;
    try {
        FileInputStream fileInputStreamReader = new FileInputStream(originalFile);
        byte[] bytes = new byte[(int) originalFile.length()];
        fileInputStreamReader.read(bytes);
        encodedBase64=Base64.encodeToString(bytes,Base64.NO_WRAP);
        messaggio=encodedBase64.toString();
        //encodedBase64 = new String(Base64.encode(bytes));
    } catch (FileNotFoundException e) {
        e.printStackTrace();
    } catch (IOException e) {
        e.printStackTrace();
    }

现在,我想取消这个base64字符串并将其转换为文件并将其保存在设备上…

有人能帮我吗?

谢谢大家=)

解决方法

你可以试试这个:
FileOutputStream fos = new FileOutputStream(filepath);
fos.write(Base64.decode(base64String,Base64.NO_WRAP));
fos.close();

哪里:

> filepath:新文件的路径> base64String:您要转换的base64字符串

原文链接:https://www.f2er.com/android/317115.html

猜你在找的Android相关文章