/helloworlds/3.8-json/fastjson/src/main/java/fastjson/JsonPathHelloWorld.java

https://bitbucket.org/slavavedenin/useful-java-links2 · Java · 69 lines · 46 code · 16 blank · 7 comment · 0 complexity · 12d17830c120ce9bfc2346f037d0d875 MD5 · raw file

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