我正在使用此代码从网站下载字符串:
static public String getLast() throws IOException {
String result = "";
URL url = new URL("https://www.bitstamp.net/api/ticker/");
BufferedReader in = new BufferedReader(new InputStreamReader(
url.openStream()));
String str;
while ((str = in.readLine()) != null) {
result += str;
}
in.close();
return result;
}
当我打印此方法的结果时,这就是我得到的:
{"high": "349.90", "last": "335.23", "timestamp": "1384198415", "bid": "335.00", "volume": "33743.67611671", "low": "300.28", "ask": "335.23"}
这正是打开URL时显示的内容。这对我来说很好,但如果有更有效的方法,请告诉我。
我需要提取的是335.23。这个数字在不断变化,但“高”,“最后”,“时间戳”等词总是保持不变。我需要将335.23提取为双精度数。这可能吗?
编辑:
解决
String url = "https://www.bitstamp.net/api/ticker/";
try {
JsonFactory factory = new JsonFactory();
JsonParser jParser = factory.createParser(new URL(url));
while (jParser.nextToken() != JsonToken.END_OBJECT) {
String fieldname = jParser.getCurrentName();
if ("last".equals(fieldname)) {
jParser.nextToken();
System.out.println(jParser.getText());
break;
}
}
jParser.close();
} catch (JsonGenerationException e) {
e.printStackTrace();
} catch (JarException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
答案 0 :(得分:2)
答案 1 :(得分:0)
响应是json。使用java JSON Parser获取“high”元素的值。 其中一个java json解析器可以在(http://www.json.org/java/index.html)
上找到JSONObject obj = new JSONObject(" .... ");
String pageName = obj.getString("high");
答案 2 :(得分:0)
您收到的数据字符串称为JSON encoding。 JSON
(JavaScript Object Notation)是一种轻量级数据交换格式。使用细粒度simple json encoder and decoder对数据进行编码和解码。