簡體   English   中英

如何將base64轉換為不同類型的文件(doc,pdf,word ..etc)?

[英]How to convert base64 to different kind of files ( doc , pdf , word ..etc ) ?

我正在研究必須從服務器接收到的附件的項目。 我必須利用base64數據並將其轉換為適當的類型並下載。 它對圖像非常適合我(基本64 =>字節=>位圖),但是我發現其他類型(txt,pdf ..etc)有麻煩

嘗試這個

 try {

            File sdcard = Environment.getExternalStorageDirectory();
            File file = new File(sdcard,"test.pdf");

            File new_file_name = new File(sdcard,"new_file.pdf");

            byte[] input_file = IOUtil.readFile(file);


            byte[] encodedBytes = Base64.encode(input_file,URL_SAFE);
            String encodedString = new String(encodedBytes);
            byte[] decodedBytes = Base64.decode(encodedString.getBytes(),URL_SAFE);

            FileOutputStream fos = new FileOutputStream(new_file_name);
            fos.write(decodedBytes);
            fos.flush();
            fos.close();
        }catch (Exception e)
        {
            Log.e("ERROR",e.toString());
        }

和IOUtil類

public class IOUtil {

    public static byte[] readFile(String file) throws IOException {
        return readFile(new File(file));
    }

    public static byte[] readFile(File file) throws IOException {
        // Open file
        RandomAccessFile f = new RandomAccessFile(file, "r");
        try {
            // Get and check length
            long longlength = f.length();
            int length = (int) longlength;
            if (length != longlength)
                throw new IOException("File size >= 2 GB");
            // Read file and return data
            byte[] data = new byte[length];
            f.readFully(data);
            return data;
        } finally {
            f.close();
        }
    }
}

此代碼包含編碼和解碼部分

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM