我是JSON数据格式和Java编程语言的新手;因此,我找不到有效的答案。实际上,我必须阅读此API https://www.doviz.com/api/v1/currencies/all/latest,并从该API获取一些重要的内容。因此,我决定使用Google的GSON类,并编写了这段代码。
import java.io.BufferedReader;
import java.io.FileInputStream;
import java.io.InputStreamReader;
import java.net.URL;
import java.util.Scanner;
import com.google.gson.Gson;
public class Main {
public static void main( String[] args ) throws Exception{
String line = "";
String jsonString = "";
URL myUrl = new URL("https://www.doviz.com/api/v1/currencies/all/latest");
BufferedReader reader = new BufferedReader( new InputStreamReader(myUrl.openStream()) );
while( (line = reader.readLine()) != null ){
System.out.println(line);
jsonString += line;
}
reader.close();
jsonString = jsonString.substring(1, jsonString.length() - 1);
Gson gson = new Gson();
Currency json = gson.fromJson(jsonString, Currency.class);
}
}
public class Currency {
public double getSelling(){
return selling;
}
public double getBuyiing(){
return buying;
}
public String getCode(){
return code;
}
private double selling;
private transient long update_date;
private transient int currency;
private double buying;
private transient double change_rate;
private transient String name;
private transient String full_name;
private String code;
}
此代码会导致错误,据我估计,导致错误的主要原因是我没有在子字符串中加上反斜杠,例如:“ {\” brand \“:\” Jeep \“,\”门\“:3}”
What I am wondering is why we need to put these backslash ?
答案 0 :(得分:1)
有两件事要提到。
"
字符是字符串定界符。字符串从"
标记开始,到下一个标记结束。 (在显式初始化时,不使用其他变量)如果要在字符串中包含"
字符,则需要像\"
那样对其进行转义-因此Java知道它不是String的结尾,只是内容的一部分。
在JSON中,您应该使用单引号,当然,我的意思是相反。'
-许多库也接受双引号,但是实际上这是不正确的,并且如果有任何api抱怨它们,则该API是正确的。
因此,您的有效负载应该看起来像{'brand': 'Jeep', 'doors': 3}
答案 1 :(得分:0)
当您从api收到JSON输出时,可以直接使用输出并可以反序列化它。您不需要在json字符串中包含转义字符。当您自己定义json字符串时,它们是必需的。例如String s = "{\"current_user_url\"}";
,因为是编译器迫使您对其进行转义。但是,作为API响应获得的json输出在一个变量中,如果变量的类型与您为其分配的内容相同,则编译器将无法对此进行补偿。
现在,我只使用了您的代码,但使用了Github公共API,并且我可以对输出json进行反序列化,而无需对输出字符串进行任何操作,例如转义""
或更改"" to ''
。
class Github {
private String current_user_url;
private String authorizations_url;
public String getCurrent_user_url() {
return current_user_url;
}
public void setCurrent_user_url(String current_user_url) {
this.current_user_url = current_user_url;
}
public String getAuthorizations_url() {
return authorizations_url;
}
public void setAuthorizations_url(String authorizations_url) {
this.authorizations_url = authorizations_url;
}
}
public static void main(String[] args) throws IOException, ClassNotFoundException {
String line = "";
String jsonString = "";
URL myUrl = new URL("https://api.github.com");
BufferedReader reader = new BufferedReader( new InputStreamReader(myUrl.openStream()) );
while( (line = reader.readLine()) != null ){
//System.out.println(line);
jsonString += line;
}
reader.close();
System.out.println(jsonString);
Gson g = new Gson();
Github gi = g.fromJson(jsonString, Github.class);
System.out.println(gi.getAuthorizations_url());
System.out.println(gi.getCurrent_user_url());
}
我也自己定义了json字符串,并使用GSON对其进行了脱字符处理。在这种情况下,定义json字符串时,我需要对双引号进行转义,如下所示:
String s = "{\"current_user_url\":\"http://test.com/user\"}";
Gson g = new Gson();
Github gi = g.fromJson(s, Github.class);
System.out.println(gi.getCurrent_user_url());
此外,JSON字符串应仅包含double quotes
,如果使用single quotes
,则可能会出错。