我正在构建一个需要从网络应用程序接收文件的 Android 应用程序。
我正在使用 JavaServerSocket
来处理这个问题。
我处理了 POST 请求标头,一切正常,但是当我将文件写入磁盘时,它被损坏了。
我显示了原始文件和损坏文件的前几个字节,以查看哪些字节写错了,但我不知道如何处理它。
我使用此代码来读取 POST 请求的部分,其中包含文件数据,并获取边界字符串。
我在边界字符串前加上了前缀,"\r\n"
因为我不希望将其包含在我的文件中,尤其是当它不是文件的一部分时。
// Handle POST request
File file_upload = new File(Environment.getExternalStorageDirectory(), "Download/" + filename);
if (file_upload.createNewFile()) {
BufferedWriter out = new BufferedWriter(new OutputStreamWriter(new FileOutputStream(file_upload)));
// boundary index
int bi = 0;
// char
int c;
// this is boundary prefixed with \r\n--
String __boundary = "\r\n--" + boundary;
StringBuilder buffer = new StringBuilder();
// `br` is BufferedReader
// I start reading the file content here. br.read() reads the first byte and keeps reading until it meets the boundary.
while ((c = br.read()) != -1) {
if ((char) c == __boundary.charAt(bi)) {
buffer.append((char) c);
bi++;
if (bi == __boundary.length()) {
break;
}
} else {
if (buffer.length() != 0) {
out.write(buffer.toString());
buffer.setLength(0);
} else {
bi = 0;
}
out.write((char) c);
}
}
out.close();
}