/src/com/wqdsoft/im/Entity/MovingPic.java

https://gitlab.com/Er_Hei/PlayCar · Java · 85 lines · 56 code · 24 blank · 5 comment · 6 complexity · 357012a77abbb30a4cac46dab61825db MD5 · raw file

  1. package com.wqdsoft.im.Entity;
  2. import java.io.Serializable;
  3. import com.alibaba.fastjson.JSONObject;
  4. import com.wqdsoft.im.org.json.JSONException;
  5. public class MovingPic implements Serializable {
  6. /**
  7. *
  8. */
  9. private static final long serialVersionUID = 1L;
  10. public String urllarge;
  11. public String urlsmall;
  12. public String typefile;
  13. public MovingPic(String urlsmall, String typefile) {
  14. super();
  15. this.urlsmall = urlsmall;
  16. this.typefile = typefile;
  17. }
  18. public MovingPic(String urllarge, String urlsmall, String typefile) {
  19. super();
  20. this.urllarge = urllarge;
  21. this.urlsmall = urlsmall;
  22. this.typefile = typefile;
  23. }
  24. public MovingPic() {
  25. super();
  26. // TODO Auto-generated constructor stub
  27. }
  28. public MovingPic(String json) {
  29. super();
  30. if(json == null || json.equals("")){
  31. return;
  32. }
  33. try {
  34. com.wqdsoft.im.org.json.JSONObject parentJson = new com.wqdsoft.im.org.json.JSONObject(json);
  35. if(!parentJson.isNull("typefile")){
  36. typefile = parentJson.getString("typefile");
  37. }
  38. if(!parentJson.isNull("urllarge")){
  39. urllarge = parentJson.getString("urllarge");
  40. }
  41. if(!parentJson.isNull("urlsmall")){
  42. urlsmall = parentJson.getString("urlsmall");
  43. }
  44. } catch (JSONException e) {
  45. e.printStackTrace();
  46. }
  47. }
  48. public static MovingPic getInfo(String json) {
  49. try {
  50. return JSONObject.parseObject(json, MovingPic.class);//toJavaObject(JSONObject.parseObject(json),
  51. //Card.class);
  52. } catch (Exception e) {
  53. e.printStackTrace();
  54. return null;
  55. }
  56. }
  57. public static String getInfo(MovingPic info) {
  58. String json = JSONObject.toJSON(info).toString();
  59. return json;
  60. }
  61. }