我在服务器的字节数组中转换一个文件,并作为 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卡中?