17

base64入力が与えられた場合、AndroidでPDFファイルに変換するにはどうすればよいですか?

@Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        context = this;
        setContentView(R.layout.activity_main);
        // Get the PDF file to encode it into Base64
        File file = new File("/mnt/sdcard/download/Base64.pdf");
        try {
            // Files is from Guava library
            Files.toByteArray(file);
            // Encoded into Base64
            byte[] temp = Base64.encode(Files.toByteArray(file), Base64.DEFAULT);
            // For testing purposes, wrote the encoded string to file
            writeToFile(Base64.encodeToString(temp, Base64.DEFAULT).toString());

        } catch (IOException e) {
            Log.d(tag, "File.toByteArray() error");
            e.printStackTrace();
        }
    }

http://www.webutils.pl/index.php?idx=base64を使用して、PDF ファイルが適切にエンコードされていることをテストできました。しかし、base64 を自分でデコードして PDF に戻せるようにしたいと考えています。どうすればいいですか?

編集 1

Saneesh CSの提案に従って、以下のコードを試しました

@Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        context = this;
        setContentView(R.layout.activity_main);
        // Get the PDF file to encode it into Base64
        File file = new File("/mnt/sdcard/download/Base64.pdf");
        try {
            // Files is from Guava library
            Files.toByteArray(file);
            // Encoded into Base64
            byte[] temp = Base64.encode(Files.toByteArray(file), Base64.DEFAULT);
            // Tried with the below line, but same result.
            byte[] temp1 = Base64.encode(Files.toByteArray(file), 0);
            // For testing purposes, wrote the encoded string to file
//          writeToFile(Base64.encodeToString(temp, Base64.DEFAULT).toString());
            final File dwldsPath = new File(Environment.getExternalStorageDirectory(), "test7.pdf");
            byte[] pdfAsBytes = Base64.decode(temp, 0);
            FileOutputStream os;
            os = new FileOutputStream(dwldsPath, false);
            os.write(pdfAsBytes);
            os.flush();
            os.close();
        } catch (IOException e) {
            Log.d(tag, "File.toByteArray() error");
            e.printStackTrace();
        }
    }

上記のコードは機能します。

4

2 に答える 2

26
final File dwldsPath = new File(DOWNLOADS_FOLDER + fileName + ".pdf");
byte[] pdfAsBytes = Base64.decode(txt, 0);
FileOutputStream os;
os = new FileOutputStream(dwldsPath, false);
os.write(pdfAsBytes);
os.flush();
os.close();

このコードを試してください。txt は base64 でエンコードされた文字列です。

于 2013-11-13T16:23:14.537 に答える
1

このコードはあなたを助けるかもしれません。添付のコードを実行しましたが、完全に機能しています。

public static GetFilePathAndStatus getFileFromBase64AndSaveInSDCard(String base64, String filename,String extension){
    GetFilePathAndStatus getFilePathAndStatus = new GetFilePathAndStatus();
    try {
        byte[] pdfAsBytes = Base64.decode(base64, 0);
        FileOutputStream os;
        os = new FileOutputStream(getReportPath(filename,extension), false);
        os.write(pdfAsBytes);
        os.flush();
        os.close();
        getFilePathAndStatus.filStatus = true;
        getFilePathAndStatus.filePath = getReportPath(filename,extension);
        return getFilePathAndStatus;
    } catch (IOException e) {
        e.printStackTrace();
        getFilePathAndStatus.filStatus = false;
        getFilePathAndStatus.filePath = getReportPath(filename,extension);
        return getFilePathAndStatus;
    }
}

public static String getReportPath(String filename,String extension) {
    File file = new File(Environment.getExternalStorageDirectory().getPath(), "ParentFolder/Report");
    if (!file.exists()) {
        file.mkdirs();
    }
    String uriSting = (file.getAbsolutePath() + "/" + filename + "."+extension);
    return uriSting;

}
public static class GetFilePathAndStatus{
    public boolean filStatus;
    public String filePath;

}
于 2016-12-24T12:43:07.137 に答える