CryOnMyShoulder
public static void main(String[] args) throws JSONException {
String str = "{FYXID:4C4600835174411190C739805DE593BC,ZFY:0,FYXMC:保安保洁费}";
JSONObject jsonObject = new JSONObject(str);
Iterator<String> it = jsonObject.keys(); 
while(it.hasNext()){
// 获得key
String key = it.next(); 
String value = jsonObject.getString(key);    
System.out.println("key: "+key+",value:"+value);
}

 

用的miniui的例子调了一个下午终于TM调好了,有空再把miniUI excelExport导出的贴上

分类:

技术点:

相关文章:

  • 2021-09-19
  • 2021-12-26
  • 2022-12-23
  • 2021-11-17
  • 2021-10-30
  • 2022-12-23
  • 2022-12-23
  • 2021-12-14
猜你喜欢
  • 2022-12-23
  • 2021-12-12
  • 2022-12-23
  • 2022-02-21
  • 2022-12-23
  • 2021-11-20
相关资源
相似解决方案