使用Jersey

时间:2017-07-12 15:18:24

标签: java rest jersey cxf multipart

我尝试重建服务器的响应,以便存储收到的内容(Images和JSON)。 服务器的代码类似于here的代码 我更改了服务器以返回TXT文件,我得到了客户端上的内容。

        Response response = client.post(body);
        logger.info("content :" + response.readEntity(String.class));


--Boundary_9_2112219484_1499871974802
Content-Type: text/plain
Content-Disposition: attachement; filename="file1.txt"

Content of file 1
--Boundary_9_2112219484_1499871974802
Content-Type: text/plain
Content-Disposition: attachement; filename="file2.txt"

Content of file 2
--Boundary_9_2112219484_1499871974802--

感谢您的帮助。

1 个答案:

答案 0 :(得分:0)

我会尝试基于64编码图像,然后将其作为JSON中的字符串返回,没有任何问题。