我使用的是Spring-MVC 3,在我的应用程序中,我正在发送一些信息 有多个附件,每个附件,这个文件有一个标题,Id等。所以,我做了一个DTO如下
public class MyDTO {
Long id;
Integer age;
MultipartFile infoFile;
// getter setter
我只是根据我JSON
文件中的上述DTO类创建一个JS
对象。
这是我的Controller
映射:
@RequestMapping(value = "/saveInfo", method = RequestMethod.POST)
public @ResponseBody String saveInfo(
@RequestParam(value = "data", required = true) String stdData,
@RequestParam(value = "fileData", required = false) MultipartFile[] files,
HttpSession session,HttpServletRequest request) {
MyDTO dto;
try {
dto = mapper.readValue(stdData, new TypeReference<MyDTO>() {});
} catch (JsonParseException e) {
e.printStackTrace();
} catch (JsonMappingException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
但我收到以下错误:
org.codehaus.jackson.map.JsonMappingException: Can not construct instance of org.springframework.web.multipart.commons.CommonsMultipartFile,
problem: no suitable creator method found to deserialize from JSON String
at [Source: java.io.StringReader@19747c9; line: 1, column: 336] (through reference chain: com.avi.dto.MyDTO["hbvFile"])
答案 0 :(得分:3)
其实我找到了自己的答案。我们无法直接在JSON对象中发送文件。 File
对象不保存文件,它保存文件的路径,即。 C:/hi.txt。如果这是我们在JSON中添加的内容,它就会产生
{"File" : "C:/hi.txt"}
它不包含文件内容。所以我们不妨直接放置文件路径
JSONObject my_data = new JSONObject();
my_data.put("User", "Avi");
my_data.put("Date", "22-07-2013");
my_data.put("File", "C:/hi.txt");
如果您尝试使用JSON上传文件,一种方法是使用Java 7的NIO读取文件中的字节
byte[] bytes = Files.readAllBytes(file_upload .toPath());
Base64对这些字节进行编码,并将它们作为字符串写入JSONObject中。使用Apache Commons Codec
Base64.encodeBase64(bytes);
my_data.put("File", new String(bytes));
根据JSON规范,有94 Unicode
个字符可以表示为一个字节(如果您的JSON以UTF-8格式传输)。