From 77e222cee80d4ce1cada96e921beea60af9856b7 Mon Sep 17 00:00:00 2001 From: fangyidong Date: Sun, 26 Apr 2015 09:32:25 +0800 Subject: [PATCH] Updated Home (markdown) --- Home.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Home.md b/Home.md index 9d643af..c2843c7 100644 --- a/Home.md +++ b/Home.md @@ -31,7 +31,7 @@ Note: You need to put the latest json-simple-version.jar in your CLASSPATH befor JSON.simple maps entities from the left side to the right side while decoding or parsing, and maps entities from the right to the left while encoding. While decoding, default concrete class of java.util.List is org.json.simple.JSONArray and default concrete class of java.util.Map is org.json.simple.JSONObject. While encoding, other classes that are not listed on the right side of the table need to implement [JSONAware](https://github.com/fangyidong/json-simple/blob/master/src/main/java/org/json/simple/JSONAware.java) or [JSONStreamAware](https://github.com/fangyidong/json-simple/blob/master/src/main/java/org/json/simple/JSONStreamAware.java) (streaming only) to [[customize|EncodingExamples#Example_6-1_-_Customize_JSON_outputs]] JSON outputs. In such cases, JSON.simple calls JSONAware.toJSONString() or JSONStreamAware.writeJSONString() to determine the resulting JSON text. ### Maven Repository - * [[JSON.simple in central maven repository|JSONSimpleInCentralMavenRepository]] + * [[json-simple in central maven repository|JSONSimpleInCentralMavenRepository]] ### Developer's Guide * [[Build With Ant|BuildWithAnt]]