使用一个部分图像和一个部分json创建Android REST多部分请求

时间:2014-11-10 10:44:57

标签: android json rest multipart spring-android

我在使用Rest模板,spring-android和annotations创建Multipart请求时遇到问题。我发现了许多使用Multipart上传图像或String对象的例子,但是我找不到任何关于实现请求的解决方案,即一部分图像和第二部分json。

请求应该是这样的

部首:

Content-Type: multipart/form-data; boundary=--abcd12345
Authorization:Basic 1234567890

体:

--abcd12345
Content-Disposition: form-data; name="photo"; filename="image123.jpg"
Content-Type: image/jpeg

<@INCLUDE *C:\Users\John\Desktop\image123.jpg*@>
--abcd12345
Content-Disposition: form-data; name="item"
Content-Type: application/json

{
    "name": "My item",
    "description": "My item description",
    "categories": [1,2]
}
--abcd12345--

我尝试了很多变化和组合...我使用MultiValueMap创建请求,但我的所有努力都在服务器中结束,让我无法使用内容类型错误

如果有人知道如何实现这个PLZ确实告诉。为了更清楚地澄清问题,我不能使用任何其他库,如apache mime和旧时尚MultiPartBuilder等。

这是互联网上最常见的一个部分图像和其他部分字符串的例子。

    MultiValueMap<String, Object> parts = new LinkedMultiValueMap<String, Object>();
                parts.add("file", new FileSystemResource(fileToUpload));
                parts.add("method", "hello,world");
                String response = mRestClient.uploadFile(parts);

@Rest(rootUrl = "...", converters = {ByteArrayHttpMessageConverter.class, FormHttpMessageConverter.class, StringHttpMessageConverter.class})
public interface RestClient {
    @Post("")
    public String uploadFile(MultiValueMap data);
}

1 个答案:

答案 0 :(得分:4)

我这样做的方式:

// convert image to Base64 String
ByteArrayOutputStream stream = new ByteArrayOutputStream();
Bitmap image = getImageFile(imagePath);
image.compress(Bitmap.CompressFormat.JPEG, 100, stream);
byte[] imageBytes = stream.toByteArray();
String encodedImage = Base64.encodeToString(imageBytes, Base64.DEFAULT);

// create new item
ItemCreateDto newItemDto = new ItemCreateDto();
newItemDto.setName(new_item_name.getText().toString());
newItemDto.setDescription(new_item_description.getText().toString());
ObjectMapper obj = new ObjectMapper();
String body = obj.writeValueAsString(newItemDto);

MultiValueMap<String, Object> multiValueMap = new LinkedMultiValueMap<String, Object>();

// create header with content-disposition for image part
HttpHeaders imageHeaders = new HttpHeaders();
imageHeaders.add("Content-Disposition", "form-data; name=photo; filename=photo.jpeg");
imageHeaders.setContentType(MediaType.IMAGE_JPEG);
HttpEntity<String> imageEntity = new HttpEntity<String>(encodedImage, imageHeaders);

// create header for data part
HttpHeaders dataHeaders = new HttpHeaders();
dataHeaders.add("Content-Disposition", "form-data; name=item");
dataHeaders.setContentType(MediaType.APPLICATION_JSON);
HttpEntity<String> dataEntity = new HttpEntity<String>(body, dataHeaders);

// add headers to multiValueMap
multiValueMap.add("photo", imageEntity);
multiValueMap.add("item", dataEntity);

newItemAPI.createItem(multiValueMap);

AndroidAnnotation + Android Spring部分:

@Rest(rootUrl = "", converters = { ByteArrayHttpMessageConverter.class,    MappingJackson2HttpMessageConverter.class, FormHttpMessageConverter.class })
public interface INewItemRestClient {

@Post("")
@Accept(MediaType.APPLICATION_JSON)
@RequiresHeader({"Authorization", "Content-Type"})
String createItem(MultiValueMap<String, Object> data);

希望这会对你有所帮助......