为了将二进制文件上传到URL,建议我使用本指南。但是,该文件不在目录中,而是存储在MySql数据库的BLOB字段中。BLOB字段被映射为JPA:中的byte[]
属性
byte[] binaryFile;
我稍微修改了从指南中提取的代码,以这种方式:
HttpURLConnection connection = (HttpURLConnection ) new URL(url).openConnection();
// set some connection properties
OutputStream output = connection.getOutputStream();
PrintWriter writer = new PrintWriter(new OutputStreamWriter(output, CHARSET), true);
// set some headers with writer
InputStream file = new ByteArrayInputStream(myEntity.getBinaryFile());
System.out.println("Size: " + file.available());
try {
byte[] buffer = new byte[4096];
int length;
while ((length = file.read(buffer)) > 0) {
output.write(buffer, 0, length);
}
output.flush();
writer.append(CRLF).flush();
writer.append("--" + boundary + "--").append(CRLF).flush();
}
// catch and close streams
我没有使用分块流媒体。使用的标题为:
username and password
Content-Disposition: form-data; name="file"; filename="myFileName"rnContent-Type: application/octet-stream"
Content-Transfer-Encoding: binary
主机正确接收所有标头。它还接收上传的文件,但不幸的是,它抱怨文件不可读,并断言接收到的文件的大小比我的代码输出的大小大37个字节。
我对流、连接和byte[]的了解太有限,无法掌握解决此问题的方法。如有任何提示,不胜感激。
编辑
正如评论者所建议的,我也尝试直接写入byte[],而不使用ByteArrayInputStream:
output.write(myEntity.getBinaryFile());
不幸的是,主持人给出的答案与其他方式完全相同。
我的代码是正确的。
主机出现错误,因为它不需要Content-Transfer-Encoding
标头。取下后,一切都很好。