/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

  1. package fastjson;
  2. import com.alibaba.fastjson.JSON;
  3. /**
  4. * FastJson Hello Place
  5. *
  6. */
  7. public class FastJsonHelloWorld {
  8. public static void main(String[] args) {
  9. // init class
  10. Place place = new Place();
  11. place.setName("World");
  12. Human human = new Human();
  13. human.setMessage("Hi");
  14. human.setPlace(place);
  15. // convert to json
  16. String jsonString = JSON.toJSONString(human);
  17. System.out.println("json " + jsonString); // print "json {"message":"Hi","place":{"name":"World"}}"
  18. // convert from json
  19. Human newHuman = JSON.parseObject(jsonString, Human.class);
  20. newHuman.say(); // print "Hi , World!"
  21. }
  22. private static class Human {
  23. private String message;
  24. private Place place;
  25. public String getMessage() {
  26. return message;
  27. }
  28. public void setMessage(String message) {
  29. this.message = message;
  30. }
  31. public Place getPlace() {
  32. return place;
  33. }
  34. public void setPlace(Place place) {
  35. this.place = place;
  36. }
  37. public void say() {
  38. System.out.println();
  39. System.out.println(getMessage() + " , " + getPlace().getName() + "!");
  40. }
  41. }
  42. private static class Place {
  43. private String name;
  44. public String getName() {
  45. return name;
  46. }
  47. public void setName(String name) {
  48. this.name = name;
  49. }
  50. }
  51. }