El json.simple La biblioteca ens permet llegir i escriure dades JSON en Java. En altres paraules, podem codificar i descodificar l'objecte JSON a Java mitjançant la biblioteca json.simple.
El paquet org.json.simple conté classes importants per a l'API JSON.
- JSONValue
- JSONObject
- JSONArray
- JsonString
- JsonNumber
Instal·leu json.simple
Per instal·lar json.simple, heu d'establir classpath de json-simple.jar o afegir la dependència de Maven.
1) Baixeu json-simple.jar , o bé
2) Per afegir la dependència de Maven, escriviu el codi següent al fitxer pom.xml.
com.googlecode.json-simple json-simple 1.1
1) Codificació Java JSON
Vegem un exemple senzill per codificar l'objecte JSON a Java.
import org.json.simple.JSONObject; public class JsonExample1{ public static void main(String args[]){ JSONObject obj=new JSONObject(); obj.put('name','sonoo'); obj.put('age',new Integer(27)); obj.put('salary',new Double(600000)); System.out.print(obj); }}
Sortida:
{'name':'sonoo','salary':600000.0,'age':27}
Codificació Java JSON mitjançant Map
Vegem un exemple senzill per codificar un objecte JSON mitjançant un mapa a Java.
import java.util.HashMap; import java.util.Map; import org.json.simple.JSONValue; public class JsonExample2{ public static void main(String args[]){ Map obj=new HashMap(); obj.put('name','sonoo'); obj.put('age',new Integer(27)); obj.put('salary',new Double(600000)); String jsonText = JSONValue.toJSONString(obj); System.out.print(jsonText); }}
Sortida:
{'name':'sonoo','salary':600000.0,'age':27}
Codificació de matriu JSON de Java
Vegem un exemple senzill per codificar la matriu JSON en java.
import org.json.simple.JSONArray; public class JsonExample1{ public static void main(String args[]){ JSONArray arr = new JSONArray(); arr.add('sonoo'); arr.add(new Integer(27)); arr.add(new Double(600000)); System.out.print(arr); }}
Sortida:
['sonoo',27,600000.0]
Codificació de matriu JSON de Java mitjançant la llista
Vegem un exemple senzill per codificar la matriu JSON mitjançant List a Java.
import java.util.ArrayList; import java.util.List; import org.json.simple.JSONValue; public class JsonExample1{ public static void main(String args[]){ List arr = new ArrayList(); arr.add('sonoo'); arr.add(new Integer(27)); arr.add(new Double(600000)); String jsonText = JSONValue.toJSONString(arr); System.out.print(jsonText); }}
Sortida:
['sonoo',27,600000.0]
2) Descodificació JSON de Java
Vegem un exemple senzill per descodificar la cadena JSON en java.
import org.json.simple.JSONObject; import org.json.simple.JSONValue; public class JsonDecodeExample1 { public static void main(String[] args) { String s='{'name':'sonoo','salary':600000.0,'age':27}'; Object obj=JSONValue.parse(s); JSONObject jsonObject = (JSONObject) obj; String name = (String) jsonObject.get('name'); double salary = (Double) jsonObject.get('salary'); long age = (Long) jsonObject.get('age'); System.out.println(name+' '+salary+' '+age); } }
Sortida:
sonoo 600000.0 27