你好,我目前正在用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'.
我可以调试以找出问题所在的原因是什么?