/helloworlds/3.8-json/fastjson/src/main/java/fastjson/FastJsonHelloWorld.java
https://bitbucket.org/slavavedenin/useful-java-links2 · Java · 67 lines · 44 code · 16 blank · 7 comment · 0 complexity · 353631b7d58d69a2e5af5d0b75dd4c44 MD5 · raw file
- package fastjson;
- import com.alibaba.fastjson.JSON;
- /**
- * FastJson Hello Place
- *
- */
- public class FastJsonHelloWorld {
- public static void main(String[] args) {
- // init class
- Place place = new Place();
- place.setName("World");
- Human human = new Human();
- human.setMessage("Hi");
- human.setPlace(place);
- // convert to json
- String jsonString = JSON.toJSONString(human);
- System.out.println("json " + jsonString); // print "json {"message":"Hi","place":{"name":"World"}}"
- // convert from json
- Human newHuman = JSON.parseObject(jsonString, Human.class);
- newHuman.say(); // print "Hi , World!"
- }
- private static class Human {
- private String message;
- private Place place;
- public String getMessage() {
- return message;
- }
- public void setMessage(String message) {
- this.message = message;
- }
- public Place getPlace() {
- return place;
- }
- public void setPlace(Place place) {
- this.place = place;
- }
- public void say() {
- System.out.println();
- System.out.println(getMessage() + " , " + getPlace().getName() + "!");
- }
- }
- private static class Place {
- private String name;
- public String getName() {
- return name;
- }
- public void setName(String name) {
- this.name = name;
- }
- }
- }