gson 将JSON转换为java对象和java对象列表

vatpfxk5  于 2022-11-06  发布在  Java
关注(0)|答案(1)|浏览(211)

我从一个API得到这个JSONObject响应

  1. {
  2. "meta": {
  3. "code": 200
  4. },
  5. "data": {
  6. "tracking": {
  7. "id": "lk46hwgbadfqcl2fyacyw00q",
  8. "created_at": "2022-04-26T09:33:13+00:00",
  9. "updated_at": "2022-04-26T09:33:14+00:00",
  10. "last_updated_at": "2022-04-26T09:33:14+00:00",
  11. "tracking_number": "1Z965EW40228937186",
  12. "slug": "ups",
  13. "active": false,
  14. "android": [],
  15. "custom_fields": null,
  16. "customer_name": null,
  17. "delivery_time": 20,
  18. "destination_country_iso3": "USA",
  19. "courier_destination_country_iso3": "USA",
  20. "emails": [],
  21. "expected_delivery": null,
  22. "ios": [],
  23. "note": null,
  24. "order_id": null,
  25. "order_id_path": null,
  26. "order_date": null,
  27. "origin_country_iso3": "USA",
  28. "shipment_package_count": null,
  29. "shipment_pickup_date": "2022-03-28T19:45:12-07:00",
  30. "shipment_delivery_date": "2022-04-16T16:04:15",
  31. "shipment_type": "UPS 2nd Day Air®",
  32. "shipment_weight": 15.8,
  33. "shipment_weight_unit": "lb",
  34. "signed_by": "DRIVER RELEASE",
  35. "smses": [],
  36. "source": "api",
  37. "tag": "Delivered",
  38. "subtag": "Delivered_001",
  39. "subtag_message": "Delivered",
  40. "title": "dd",
  41. "tracked_count": 1,
  42. "last_mile_tracking_supported": true,
  43. "language": null,
  44. "unique_token": "deprecated",
  45. "checkpoints": [
  46. {
  47. "slug": "ups",
  48. "city": null,
  49. "created_at": "2022-04-26T09:33:14+00:00",
  50. "location": "US, United States",
  51. "country_name": "USA",
  52. "message": "Shipper created a label, UPS has not received the package yet.",
  53. "country_iso3": "USA",
  54. "tag": "InfoReceived",
  55. "subtag": "InfoReceived_001",
  56. "subtag_message": "Info Received",
  57. "checkpoint_time": "2022-03-28T15:55:14-07:00",
  58. "coordinates": [],
  59. "state": null,
  60. "zip": null,
  61. "raw_tag": "MP"
  62. },
  63. {
  64. "slug": "ups",
  65. "city": "Goodyear",
  66. "created_at": "2022-04-26T09:33:14+00:00",
  67. "location": "Goodyear, AZ, US, United States",
  68. "country_name": "USA",
  69. "message": "Origin Scan",
  70. "country_iso3": "USA",
  71. "tag": "InTransit",
  72. "subtag": "InTransit_002",
  73. "subtag_message": "Acceptance scan",
  74. "checkpoint_time": "2022-03-28T19:45:12-07:00",
  75. "coordinates": [],
  76. "state": "AZ",
  77. "zip": null,
  78. "raw_tag": "OR"
  79. },
  80. {
  81. "slug": "ups",
  82. "city": "Goodyear",
  83. "created_at": "2022-04-26T09:33:14+00:00",
  84. "location": "Goodyear, AZ, US, United States",
  85. "country_name": "USA",
  86. "message": "Departed from Facility",
  87. "country_iso3": "USA",
  88. "tag": "InTransit",
  89. "subtag": "InTransit_007",
  90. "subtag_message": "Departure Scan",
  91. "checkpoint_time": "2022-03-29T00:38:00-07:00",
  92. "coordinates": [],
  93. "state": "AZ",
  94. "zip": null,
  95. "raw_tag": "DP"
  96. },
  97. {
  98. "slug": "ups",
  99. "city": "Phoenix",
  100. "created_at": "2022-04-26T09:33:14+00:00",
  101. "location": "Phoenix, AZ, US, United States",
  102. "country_name": "USA",
  103. "message": "Arrived at Facility",
  104. "country_iso3": "USA",
  105. "tag": "InTransit",
  106. "subtag": "InTransit_003",
  107. "subtag_message": "Arrival scan",
  108. "checkpoint_time": "2022-03-29T01:18:00-07:00",
  109. "coordinates": [],
  110. "state": "AZ",
  111. "zip": null,
  112. "raw_tag": "AR"
  113. },
  114. {
  115. "slug": "ups",
  116. "city": "Phoenix",
  117. "created_at": "2022-04-26T09:33:14+00:00",
  118. "location": "Phoenix, AZ, US, United States",
  119. "country_name": "USA",
  120. "message": "Departed from Facility",
  121. "country_iso3": "USA",
  122. "tag": "InTransit",
  123. "subtag": "InTransit_007",
  124. "subtag_message": "Departure Scan",
  125. "checkpoint_time": "2022-03-29T05:43:00-07:00",
  126. "coordinates": [],
  127. "state": "AZ",
  128. "zip": null,
  129. "raw_tag": "DP"
  130. },
  131. {
  132. "slug": "ups",
  133. "city": "Philadelphia",
  134. "created_at": "2022-04-26T09:33:14+00:00",
  135. "location": "Philadelphia, PA, US, United States",
  136. "country_name": "USA",
  137. "message": "Arrived at Facility",
  138. "country_iso3": "USA",
  139. "tag": "InTransit",
  140. "subtag": "InTransit_003",
  141. "subtag_message": "Arrival scan",
  142. "checkpoint_time": "2022-03-29T12:54:00-04:00",
  143. "coordinates": [],
  144. "state": "PA",
  145. "zip": null,
  146. "raw_tag": "AR"
  147. },
  148. {
  149. "slug": "ups",
  150. "city": "Philadelphia",
  151. "created_at": "2022-04-26T09:33:14+00:00",
  152. "location": "Philadelphia, PA, US, United States",
  153. "country_name": "USA",
  154. "message": "Departed from Facility",
  155. "country_iso3": "USA",
  156. "tag": "InTransit",
  157. "subtag": "InTransit_007",
  158. "subtag_message": "Departure Scan",
  159. "checkpoint_time": "2022-03-30T01:17:00-04:00",
  160. "coordinates": [],
  161. "state": "PA",
  162. "zip": null,
  163. "raw_tag": "DP"
  164. },
  165. {
  166. "slug": "ups",
  167. "city": "Landover",
  168. "created_at": "2022-04-26T09:33:14+00:00",
  169. "location": "Landover, MD, US, United States",
  170. "country_name": "USA",
  171. "message": "Arrived at Facility",
  172. "country_iso3": "USA",
  173. "tag": "InTransit",
  174. "subtag": "InTransit_003",
  175. "subtag_message": "Arrival scan",
  176. "checkpoint_time": "2022-03-30T04:03:00-04:00",
  177. "coordinates": [],
  178. "state": "MD",
  179. "zip": null,
  180. "raw_tag": "AR"
  181. },
  182. {
  183. "slug": "ups",
  184. "city": "Landover",
  185. "created_at": "2022-04-26T09:33:14+00:00",
  186. "location": "Landover, MD, US, United States",
  187. "country_name": "USA",
  188. "message": "Processing at UPS Facility",
  189. "country_iso3": "USA",
  190. "tag": "InTransit",
  191. "subtag": "InTransit_001",
  192. "subtag_message": "In Transit",
  193. "checkpoint_time": "2022-03-30T06:20:05-04:00",
  194. "coordinates": [],
  195. "state": "MD",
  196. "zip": null,
  197. "raw_tag": "YP"
  198. },
  199. {
  200. "slug": "ups",
  201. "city": "Landover",
  202. "created_at": "2022-04-26T09:33:14+00:00",
  203. "location": "Landover, MD, US, United States",
  204. "country_name": "USA",
  205. "message": "Out For Delivery Today",
  206. "country_iso3": "USA",
  207. "tag": "OutForDelivery",
  208. "subtag": "OutForDelivery_001",
  209. "subtag_message": "Out for Delivery",
  210. "checkpoint_time": "2022-03-30T09:13:00-04:00",
  211. "coordinates": [],
  212. "state": "MD",
  213. "zip": null,
  214. "raw_tag": "OT"
  215. },
  216. {
  217. "slug": "ups",
  218. "city": "Landover",
  219. "created_at": "2022-04-26T09:33:14+00:00",
  220. "location": "Landover, MD, US, United States",
  221. "country_name": "USA",
  222. "message": "The receiver was not available for delivery. We'll make a second attempt the next business day.",
  223. "country_iso3": "USA",
  224. "tag": "AttemptFail",
  225. "subtag": "AttemptFail_002",
  226. "subtag_message": "Addreesee not available",
  227. "checkpoint_time": "2022-03-30T19:55:20-04:00",
  228. "coordinates": [],
  229. "state": "MD",
  230. "zip": null,
  231. "raw_tag": "48"
  232. },
  233. {
  234. "slug": "ups",
  235. "city": "Landover",
  236. "created_at": "2022-04-26T09:33:14+00:00",
  237. "location": "Landover, MD, US, United States",
  238. "country_name": "USA",
  239. "message": "Out For Delivery Today",
  240. "country_iso3": "USA",
  241. "tag": "OutForDelivery",
  242. "subtag": "OutForDelivery_001",
  243. "subtag_message": "Out for Delivery",
  244. "checkpoint_time": "2022-03-31T09:03:56-04:00",
  245. "coordinates": [],
  246. "state": "MD",
  247. "zip": null,
  248. "raw_tag": "OT"
  249. },
  250. {
  251. "slug": "ups",
  252. "city": "Landover",
  253. "created_at": "2022-04-26T09:33:14+00:00",
  254. "location": "Landover, MD, US, United States",
  255. "country_name": "USA",
  256. "message": "The receiver was not available for delivery. We'll make a second attempt the next business day.",
  257. "country_iso3": "USA",
  258. "tag": "AttemptFail",
  259. "subtag": "AttemptFail_002",
  260. "subtag_message": "Addreesee not available",
  261. "checkpoint_time": "2022-03-31T20:17:04-04:00",
  262. "coordinates": [],
  263. "state": "MD",
  264. "zip": null,
  265. "raw_tag": "48"
  266. },
  267. {
  268. "slug": "ups",
  269. "city": "Landover",
  270. "created_at": "2022-04-26T09:33:14+00:00",
  271. "location": "Landover, MD, US, United States",
  272. "country_name": "USA",
  273. "message": "Out For Delivery Today",
  274. "country_iso3": "USA",
  275. "tag": "OutForDelivery",
  276. "subtag": "OutForDelivery_001",
  277. "subtag_message": "Out for Delivery",
  278. "checkpoint_time": "2022-04-01T09:33:30-04:00",
  279. "coordinates": [],
  280. "state": "MD",
  281. "zip": null,
  282. "raw_tag": "OT"
  283. },
  284. {
  285. "slug": "ups",
  286. "city": "Landover",
  287. "created_at": "2022-04-26T09:33:14+00:00",
  288. "location": "Landover, MD, US, United States",
  289. "country_name": "USA",
  290. "message": "The receiver was not available for delivery. We'll make a second attempt the next business day.",
  291. "country_iso3": "USA",
  292. "tag": "AttemptFail",
  293. "subtag": "AttemptFail_002",
  294. "subtag_message": "Addreesee not available",
  295. "checkpoint_time": "2022-04-01T18:17:11-04:00",
  296. "coordinates": [],
  297. "state": "MD",
  298. "zip": null,
  299. "raw_tag": "48"
  300. },
  301. {
  302. "slug": "ups",
  303. "city": "Landover",
  304. "created_at": "2022-04-26T09:33:14+00:00",
  305. "location": "Landover, MD, US, United States",
  306. "country_name": "USA",
  307. "message": "Processing at UPS Facility",
  308. "country_iso3": "USA",
  309. "tag": "InTransit",
  310. "subtag": "InTransit_001",
  311. "subtag_message": "In Transit",
  312. "checkpoint_time": "2022-04-02T03:34:21-04:00",
  313. "coordinates": [],
  314. "state": "MD",
  315. "zip": null,
  316. "raw_tag": "YP"
  317. },
  318. {
  319. "slug": "ups",
  320. "city": "Landover",
  321. "created_at": "2022-04-26T09:33:14+00:00",
  322. "location": "Landover, MD, US, United States",
  323. "country_name": "USA",
  324. "message": "Loaded on Delivery Vehicle",
  325. "country_iso3": "USA",
  326. "tag": "OutForDelivery",
  327. "subtag": "OutForDelivery_001",
  328. "subtag_message": "Out for Delivery",
  329. "checkpoint_time": "2022-04-02T03:49:53-04:00",
  330. "coordinates": [],
  331. "state": "MD",
  332. "zip": null,
  333. "raw_tag": "OF"
  334. },
  335. {
  336. "slug": "ups",
  337. "city": "Landover",
  338. "created_at": "2022-04-26T09:33:14+00:00",
  339. "location": "Landover, MD, US, United States",
  340. "country_name": "USA",
  341. "message": "Out For Delivery Today",
  342. "country_iso3": "USA",
  343. "tag": "OutForDelivery",
  344. "subtag": "OutForDelivery_001",
  345. "subtag_message": "Out for Delivery",
  346. "checkpoint_time": "2022-04-02T09:49:40-04:00",
  347. "coordinates": [],
  348. "state": "MD",
  349. "zip": null,
  350. "raw_tag": "OT"
  351. },
  352. {
  353. "slug": "ups",
  354. "city": "Landover",
  355. "created_at": "2022-04-26T09:33:14+00:00",
  356. "location": "Landover, MD, US, United States",
  357. "country_name": "USA",
  358. "message": "Package was driver released",
  359. "country_iso3": "USA",
  360. "tag": "InTransit",
  361. "subtag": "InTransit_001",
  362. "subtag_message": "In Transit",
  363. "checkpoint_time": "2022-04-02T17:00:44-04:00",
  364. "coordinates": [],
  365. "state": "MD",
  366. "zip": null,
  367. "raw_tag": "FS"
  368. },
  369. {
  370. "slug": "ups",
  371. "city": "Bronx",
  372. "created_at": "2022-04-26T09:33:14+00:00",
  373. "location": "Bronx, NY, US, United States",
  374. "country_name": "USA",
  375. "message": "The receiver refused, the package appeared to be damaged. UPS will notify the sender with the details.",
  376. "country_iso3": "USA",
  377. "tag": "Exception",
  378. "subtag": "Exception_003",
  379. "subtag_message": "Customer refused delivery",
  380. "checkpoint_time": "2022-04-14T15:08:16-04:00",
  381. "coordinates": [],
  382. "state": "NY",
  383. "zip": null,
  384. "raw_tag": "KQ"
  385. },
  386. {
  387. "slug": "ups",
  388. "city": "Great Falls",
  389. "created_at": "2022-04-26T09:33:14+00:00",
  390. "location": "Great Falls, MT, US, United States",
  391. "country_name": "USA",
  392. "message": "Package was driver released",
  393. "country_iso3": "USA",
  394. "tag": "InTransit",
  395. "subtag": "InTransit_001",
  396. "subtag_message": "In Transit",
  397. "checkpoint_time": "2022-04-15T16:04:15-06:00",
  398. "coordinates": [],
  399. "state": "MT",
  400. "zip": null,
  401. "raw_tag": "FS"
  402. },
  403. {
  404. "slug": "ups",
  405. "city": "GOODYEAR",
  406. "created_at": "2022-04-26T09:33:14+00:00",
  407. "location": "GOODYEAR, AZ, US, United States",
  408. "country_name": "USA",
  409. "message": "DELIVERED",
  410. "country_iso3": "USA",
  411. "tag": "Delivered",
  412. "subtag": "Delivered_001",
  413. "subtag_message": "Delivered",
  414. "checkpoint_time": "2022-04-16T16:04:15-06:00",
  415. "coordinates": [],
  416. "state": "AZ",
  417. "zip": null,
  418. "raw_tag": "FS"
  419. }
  420. ],
  421. "subscribed_smses": [],
  422. "subscribed_emails": [],
  423. "return_to_sender": false,
  424. "order_promised_delivery_date": null,
  425. "delivery_type": null,
  426. "pickup_location": null,
  427. "pickup_note": null,
  428. "courier_tracking_link": "https://www.ups.com/track?loc=en_US&tracknum=1Z965EW40228937186&requester=WT/trackdetails",
  429. "first_attempted_at": "2022-03-30T19:55:20-04:00",
  430. "courier_redirect_link": "https://www.ups.com/track?loc=en_US&tracknum=1Z965EW40228937186&requester=WT/trackdetails",
  431. "order_tags": [],
  432. "order_number": null,
  433. "aftership_estimated_delivery_date": null,
  434. "on_time_status": null,
  435. "on_time_difference": null,
  436. "tracking_account_number": null,
  437. "tracking_origin_country": null,
  438. "tracking_destination_country": null,
  439. "tracking_key": null,
  440. "tracking_postal_code": null,
  441. "tracking_ship_date": null,
  442. "tracking_state": null
  443. }
  444. }
  445. }

我需要将JSONObject中的数据放入2个Java对象中。
"data": { "tracking": {下的一些数据进入Java对象Tracking(匹配变量名),检查点列表+ tracking_number(在每个检查点对象中)进入Java对象Checkpoint
跟踪类

  1. @PrimaryKey
  2. @NonNull
  3. @ColumnInfo(name = "Tracking_number")
  4. public String trackingNumber;
  5. /**Unique code of each courier. If you do not specify a slug, Aftership will automatically detect
  6. * the courier based on the tracking number format and your selected couriers*/
  7. @ColumnInfo(name = "slug")
  8. public String slug;
  9. /**Memo of the tracking. Default value as trackingNumber */
  10. @ColumnInfo(name = "memo")
  11. public String memo;
  12. /**Customer name of the tracking. */
  13. @ColumnInfo(name = "Customer_Name")
  14. public String customerName;
  15. /**ISO Alpha-3(three letters)to specify the destination of the shipment.
  16. * If you use postal service to send international shipments, AfterShip will automatically
  17. * get tracking results at destination courier as well (e.g. USPS for USA). */
  18. @ColumnInfo(name = "Destination_Country")
  19. public String destinationCountryISO3;
  20. /**Origin country of the tracking. ISO Alpha-3 */
  21. @ColumnInfo(name = "Origin_Country")
  22. public String originCountryISO3;
  23. /**fields informed by Aftership API*/
  24. /**Date and time of the tracking created. */
  25. @ColumnInfo(name = "Created_date")
  26. public String createdAt;
  27. /**Date and time of the tracking last updated. */
  28. @ColumnInfo(name = "Last_updated")
  29. public String updatedAt;
  30. /**Whether or not AfterShip will continue tracking the shipments.
  31. * Value is `false` when status is `Delivered` or `Expired`. */
  32. @ColumnInfo(name = "Active_status")
  33. public boolean active;
  34. /**Expected delivery date (if any). */
  35. @ColumnInfo(name = "Expected_delivery")
  36. public String expectedDelivery;
  37. /**Number Number of packages under the tracking. */
  38. @ColumnInfo(name = "Package_count")
  39. public int shipmentPackageCount;
  40. /**Shipment type provided by carrier (if any). */
  41. @ColumnInfo(name = "Shipment_type")
  42. public String shipmentType;
  43. /**Signed by information for delivered shipment (if any). */
  44. @ColumnInfo(name = "Signed_by")
  45. public String signedBy;
  46. /**Current status of tracking. */
  47. @ColumnInfo(name = "Tag")
  48. public String tag;
  49. /**Number of attempts AfterShip tracks at courier's system. */
  50. @ColumnInfo(name = "Tracked_count")
  51. public int trackedCount;
  52. /**Tracking postal code tracking_postal_code*/
  53. @ColumnInfo(name = "Tracking_postal_code")
  54. public String trackingPostalCode;
  55. /**Tracking ship date tracking_ship_date*/
  56. @ColumnInfo(name = "Tracking_ship_date")
  57. public String trackingShipDate;

检查点类

  1. @PrimaryKey
  2. @ColumnInfo(name = "Tracking_number")
  3. @NonNull
  4. public String trackingNumber;
  5. /**Date and time of the tracking created. */
  6. @ColumnInfo(name = "Date_created")
  7. public String createdAt;
  8. /**Date and time of the checkpoint, provided by courier. Value may be:
  9. Empty String,
  10. YYYY-MM-DD,
  11. YYYY-MM-DDTHH:MM:SS, or
  12. YYYY-MM-DDTHH:MM:SS+TIMEZONE */
  13. @ColumnInfo(name = "Checkpoint_time")
  14. public String checkpointTime;
  15. /**Location info (if any) */
  16. @ColumnInfo(name = "City")
  17. public String city;
  18. /**Country ISO Alpha-3 (three letters) of the checkpoint */
  19. @ColumnInfo(name = "Country_ISO")
  20. public String countryISO3;
  21. /**Country name of the checkpoint, may also contain other location info. */
  22. @ColumnInfo(name = "Country_name")
  23. public String countryName;
  24. /**Checkpoint message */
  25. @ColumnInfo(name = "Message")
  26. public String message;
  27. /**Location info (if any) */
  28. @ColumnInfo(name = "State")
  29. public String state;
  30. /**Status of the checkpoint */
  31. @ColumnInfo(name = "tag")
  32. public String tag;
  33. /**Location info (if any) */
  34. @ColumnInfo(name = "Postal_code")
  35. public String zip;

这是我目前将JSONObject转换为Tracking对象所需要的,但它转换了整个JSONObject,而我只需要Tracking类中存在的数据字段。对于检查点,我需要将JSONObject中的检查点列表转换为检查点对象列表。

  1. Gson gson = new Gson();
  2. Tracking tracking = gson.fromJson(trackingJSON.getJSONObject("tracking").toString(), Tracking.class);
qv7cva1a

qv7cva1a1#

由于trackingJSON显然已经包含了DOM格式的解析JSON,因此最简单的方法是手动提取checkpoints属性,然后让Gson分别对其进行反序列化,例如:

  1. JSONObject trackingJson = trackingJSON.getJSONObject("tracking");
  2. // Uses `remove` to avoid unnecessary conversion when calling `trackingData.toString()`
  3. JSONArray checkpointsJson = (JSONArray) trackingData.remove("checkpoints");
  4. Tracking tracking = gson.fromJson(trackingJson.toString(), Tracking.class);
  5. List<Checkpoint> checkpoints = gson.fromJson(checkpointsJson.toString(),
  6. new TypeToken<List<Checkpoint>>() {}.getType());
  7. // Manually set the tracking number
  8. checkpoints.forEach(c -> c.trackingNumber = tracking.trackingNumber);

相关问题