1

我在服务器的字节数组中转换一个文件,并作为 json 字符串发送到 Android 客户端。通过这段代码,我转换了该文件:

FileInputStream fileInputStream=null;

        File file = new File("C:\\testing.txt");

        byte[] bFile = new byte[(int) file.length()];

        try {
            //convert file into array of bytes
        fileInputStream = new FileInputStream(file);
        fileInputStream.read(bFile);
        fileInputStream.close();
}catch(Exception e){
            e.printStackTrace();
        }

在 Android 客户端中,我得到如下值:“SGVsbG8gRG93bmxvYWQgaXMgd29ya2luZw==”(字符串类型)

那么我如何将此代码转换为字节并转换为文件并保存在SD卡中?

4

2 回答 2

3

您使用 BASE64 编码对二进制数据进行了编码。

要对其进行解码,您可以使用android.util.Base64 class

要了解如何将文件写入外部存储,请阅读本文

于 2013-06-17T13:55:43.247 回答
1
try {
     /* file_byte is yous json string*/
    byte[] decodestring = Base64.decode(file_byte, Base64.DEFAULT);
    File file = Environment.getExternalStorageDirectory();
    File dir = new File(file.getAbsolutePath() + "/VPM/Document/");
     if (!dir.exists()) {
         dir.mkdirs();
     }
     File document = new File(dir, doc_name);

     if (document.exists()) {
         document.delete();
      }

     FileOutputStream fos = new FileOutputStream(document.getPath());
      fos.write(decodestring);
      fos.close();
   } catch (Exception e) {
    Log.e(TAG, "error: " + e.getMessage());
    runOnUiThread(new Runnable() {
    @Override
        public void run() {
            Snackbar.make(root_doc, "Failed to download file..", Snackbar.LENGTH_LONG)
            .setAction("Action", null).show();
        }
    });
}
于 2017-05-31T11:39:36.020 回答