我尝试使用Gson和org.json作为示例。我也尝试过Commons Text,但是当我手动导入库时(我不允许使用Maven),对我来说不起作用。因此,我决定寻找另一种解决方案。
NoClassDefFoundError:org / apache / commons / text / StringEscapeUtils
我需要以这种方式将数组转义给Json。特别是Ó
,ó
或任何Latin-1字符(不转义"
,仅转义"&%$/"Helló"
中的内容)。原始消息:Helló / // \ "WÓRLD"
{"token":"045-245","message":"Helló / // \\ \"WÓRLD\" "}
到
{"token":"045-245","message":"Hell\u00F3 / // \\ \"W\u00D3RLD\" "}
这是我使用时得到的:
Gson
JsonObject json = new JsonObject();
json.addProperty("token", "045-245");
json.addProperty("message", "Helló WÓRLD");
String payload = new Gson().toJson(json);
System.out.println(payload);
结果:
{"token":"045-245","message":"Helló WÓRLD"}
org.json
JSONObject jsonObject = new JSONObject();
jsonObject.put("token", "045-245");
jsonObject.put("message", "Helló WÓRLD");
System.out.println(jsonObject.toString());
结果:
{"message":"Helló WÓRLD","token":"045-245"}
答案 0 :(得分:0)
由于@dnault,我找到了Jackson Json Library。我需要导入com.fasterxml.jackson.core
,com.fasterxml.jackson.databind
。我也导入了com.fasterxml.jackson.annotations
,在JDK 8上没有问题。
import com.fasterxml.jackson.core.JsonGenerator;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.databind.node.ObjectNode;
public class Foo {
ObjectMapper mapper = new ObjectMapper();
mapper.getFactory().configure(JsonGenerator.Feature.ESCAPE_NON_ASCII, true);
ObjectNode node = mapper.getNodeFactory().objectNode();
node.put("token", "045-245");
node.put("message", "Helló / // \\ \"WÓRLD\" ");
System.out.println(mapper.writeValueAsString(node));
}
输出:
{"token":"045-245","message":"Hell\u00F3 / // \\ \"W\u00D3RLD\" "}