XML问题:内容类型为'text / xml; charset = ISO-8859-1'不是预期的类型'text / xml; charset = utf-8'

时间:2019-10-25 14:33:27

标签: java xml post

你好,我目前正在用Java编写代码以将xml请求发送到url

response = given().relaxedHTTPSValidation().request().contentType("text/xml").body(new String(readFileContent(fileName, folderName, jsonObj, "xml", csvData))).when().post(url);

但是,当我的代码尝试运行该代码时,我会得到一个回音:

HTTP/1.1 415 Cannot process the message because the content type 'text/xml; charset=ISO-8859-1' was not the expected type 'text/xml; charset=utf-8'.

我可以调试以找出问题所在的原因是什么?

0 个答案:

没有答案