这是我的代码,用于获取与字符串json数据相关的属性名称和值。代码在没有错误的情况下执行,但我得到的结果为null。
import java.io.*;
import java.net.*;
import org.json.simple.JSONArray;
import org.json.simple.JSONObject;
import org.json.simple.parser.JSONParser;
import org.json.simple.parser.ParseException;
public class A18 {
public static void main(String[] args) throws ParseException{
String[] out2;
String out,out1= null;
try{
URL a=new URL("URL");
HttpURLConnection b=(HttpURLConnection) a.openConnection();
b.setRequestMethod("GET");
b.setRequestProperty("Accept", "application/json");
BufferedReader c=new BufferedReader(new InputStreamReader(b.getInputStream()));
StringBuilder sb=new StringBuilder();
while((out=c.readLine())!=null)
{
sb.append(out);
out1=sb.toString();
}
c.close();
b.disconnect();
JSONObject obj = new JSONObject();
String id = obj.toJSONString("collection");
String error = obj.toJSONString("links");
}
catch (Exception e)
{
e.printStackTrace();
return;
}
}}
答案 0 :(得分:-1)
在您的导入代码中,您拥有import org.json.JSONObject
,将其更改为import org.json.simple.JSONObject
应该会有所帮助。
您很可能还有其他org.json.x
导入,您必须更改为org.json.simple.x
。