11

为了将二进制文件上传到 URL,建议我使用本指南。但是,该文件不在目录中,而是存储在 MySql db 的 BLOB 字段中。byte[]BLOB 字段在 JPA中被映射为一个属性:

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\"\r\nContent-Type: application/octet-stream"
Content-Transfer-Encoding: binary

主机正确接收所有标头。它也接收上传的文件,但不幸的是抱怨文件不可读,并断言接收到的文件的大小比我的代码输出的大小大 37 个字节。

我对流、连接和字节 [] 的了解太有限,无法掌握解决此问题的方法。任何提示表示赞赏。


编辑

正如评论者所建议的那样,我也尝试过直接编写 byte[],而不使用 ByteArrayInputStream:

output.write(myEntity.getBinaryFile());

不幸的是,主持人给出的答案与另一种方式完全相同。

4

1 回答 1

6

我的代码是正确的。

主机给出了一个错误,因为它没有预料到Content-Transfer-Encoding标题。删除它后,一切都很顺利。

于 2012-11-20T20:58:35.723 回答