我想上传一个文件,如下所述:http: //docs.octoprint.org/en/master/api/files.html#upload-file-or-create-folder
我使用 apache-httpclient 发送一个 post 连接,但是每当我启动该方法时,什么都没有发生,应用程序没有错误就卡住了,但什么也没做。
其他 POST 和 GET 请求正在工作,我不需要 API 密钥,因为我关闭了身份验证
CloseableHttpClient posterClient = HttpClients.createDefault();
HttpPost post = new HttpPost("http://localhost:5002/api/files/local");
post.setHeader("Host", "http://localhost:5002");
post.setHeader("Content-Type", "multipart/form-data; boundary=----WebKitFormBoundaryDeC2E3iWbTv1PwMC");
post.setHeader("X-Api-Key", "");
HttpEntity entity = MultipartEntityBuilder
.create()
.addBinaryBody("file", new File("/Users/florian/eclipse-workspace/docker-Client/src/main/java/test/dog3.gcode"), ContentType.create("multipart/form-data"), "dog.gcode")
.addTextBody("select", "true")
.addTextBody("print", "true")
.build();
ByteArrayOutputStream bytes = new ByteArrayOutputStream();
entity.writeTo(bytes);
String content = bytes.toString();
StringEntity entity2 = new StringEntity(content, ContentType.APPLICATION_OCTET_STREAM);
entity2.setContentEncoding("application/octet-stream");
post.setEntity(entity2);
CloseableHttpResponse answer = posterClient.execute(post);
如果我打印 POST,我会得到(已删除 gcode 指令):
RequestLine:POST http://localhost:5002/api/files/local HTTP/1.1
Header:boundary=----WebKitFormBoundaryDeC2E3iWbTv1PwMC;
Content:--JIDzHYxyG74480VXGugHYTI-7xe5OrZ8
Content-Disposition: form-data; name="file"; filename="dog.gcode"
Content-Type: multipart/form-data
Content-Transfer-Encoding: binary
M5
G90
G21
G1 F3000
G1 X18.0359 Y51.0881
M3 S90
G4 P0.3
--JIDzHYxyG74480VXGugHYTI-7xe5OrZ8
Content-Disposition: form-data; name="select"
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 8bit
true
--JIDzHYxyG74480VXGugHYTI-7xe5OrZ8
Content-Disposition: form-data; name="print"
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 8bit
true
--JIDzHYxyG74480VXGugHYTI-7xe5OrZ8--
所以……不完全是我想要的……