org.json.simple cannot be resolved

后端 未结 5 768
别跟我提以往
别跟我提以往 2020-12-10 05:00

I\'m a total java newbie and I have this problem. I try to decode Json and in order to do that I want to import these packages:

import org.json.simple.JSONAr         


        
5条回答
  •  既然无缘
    2020-12-10 05:16

    Try importing this in build.gradle dependencies

    compile group: 'com.googlecode.json-simple', name: 'json-simple', version: '1.1'
    

提交回复
热议问题