通过Jersey和x-www-form-urlencoded发送文件

时间:2012-05-21 15:11:14

标签: java jersey

我正在尝试使用以下客户端代码调用REST服务,并希望发送一些字符串消息详细信息以及附件文件:

ClientConfig config = new DefaultClientConfig();
config.getClasses().add(FormProvider.class);
Client client = Client.create(config);
WebResource webResource = client.resource("http://some.url/path1/path2");

File attachment = new File("./file.zip");

FormDataBodyPart fdp = new FormDataBodyPart(
            "content", 
            new ByteArrayInputStream(Base64.encode(FileUtils.readFileToByteArray(attachedLogs))),
            MediaType.APPLICATION_OCTET_STREAM_TYPE);
form.bodyPart(fdp);

ClientResponse response = webResource.type(MediaType.APPLICATION_FORM_URLENCODED).post(ClientResponse.class, form);     

我所定位的服务器接受Base64编码内容,因此这就是从File传输到ByteArray的原因。

另外,我发现com.sun.jersey.core.impl.provider.entity.FormProvider类用于生成和使用“x-www-form-urlencoded”请求。

@Produces({"application/x-www-form-urlencoded", "*/*"})
@Consumes({"application/x-www-form-urlencoded", "*/*"})

但我仍然最终得到以下的堆栈跟踪:

com.sun.jersey.api.client.ClientHandlerException: com.sun.jersey.api.client.ClientHandlerException: A message body writer for Java type, class com.sun.jersey.multipart.FormDataMultiPart, and MIME media type, application/x-www-form-urlencoded, was not found at com.sun.jersey.client.urlconnection.URLConnectionClientHandler.handle(URLConnectionClientHandler.java:149) ~[jersey-client-1.9.1.jar:1.9.1]
at com.sun.jersey.api.client.Client.handle(Client.java:648) ~[jersey-client-1.9.1.jar:1.9.1]
at com.sun.jersey.api.client.WebResource.handle(WebResource.java:670) ~[jersey-client-1.9.1.jar:1.9.1]
at com.sun.jersey.api.client.WebResource.access$200(WebResource.java:74) ~[jersey-client-1.9.1.jar:1.9.1]
at com.sun.jersey.api.client.WebResource$Builder.post(WebResource.java:563) ~[jersey-client-1.9.1.jar:1.9.1]

对此有何帮助?

2 个答案:

答案 0 :(得分:4)

我设法让客户端工作。问题是我强制将文件作为单独的邮件正文部分发送,而x-www-form-urlencoded is actually packing all of the data as parameters in the query that is the entire body

因此,如果您想通过Jersey post方法发送附件,那么正常工作的客户端代码将是:

ClientConfig config = new DefaultClientConfig();
Client client = Client.create(config);
WebResource webResource = client.resource("http://some.url/path1/path2");

MultivaluedMapImpl values = new MultivaluedMapImpl();
values.add("filename", "report.zip");
values.add("text", "Test message");
values.add("content", new String(Base64.encode(FileUtils.readFileToByteArray(attachedLogs))));
ClientResponse response = webResource.type(MediaType.APPLICATION_FORM_URLENCODED).post(ClientResponse.class, values);

我的案例中需要Apache Commons的Base64编码器将文件转换为编码字节数组,不确定这是否是一般要求。

答案 1 :(得分:1)

尝试使用Multipart/form-data代替application/x-www-form-urlencodedThis tutorial可能有帮助。