正在解析 Json 以转换为 DTO

Parsing Json to convert into DTO

我想转换以下JSON

{
  "docType": {
    "order": 1,
    "type": "String"
  },
  "docNum": {
    "order": 2,
    "type": "String"
  },
  "amount": {
    "order": 3,
    "type": "Double"
  }
}

通过上面的解析进入 DTO JSON 让我们说

OutPutFileDTO 的 私有字符串文档类型, 私有字符串 docNum, 私人双倍金额,

注意:顺序是指变量的排序。

您可以使用 Jackson( https://mkyong.com/java/jackson-how-to-parse-json/ ) of Gson( https://mkyong.com/java/how-to-parse-json-with-gson/ )