我是JSON新手。我正在使用包裝在JSON
中的Coinbase API。如何在JSON文本中使用Jquery包裝的段落中以純文本顯示數據?
看一看這個代碼:
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"%>
<%@ page import="rajendra.arora.bitcoin.CoinbaseExample" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
<h1>This is foo.</h1>
<p>This is my Amount balance in Coinbase:</p>
<%
CoinbaseExample ce=new CoinbaseExample();
String myBal=ce.getHttp("https://api.coinbase.com/v1/account/balance", null);
%>
<p id="demo">
<%
out.print(myBal);
%>
</p>
</body>
</html>
這顯示了我輸出如下:
這是FOO。
這是Coinbase我額餘額:
{ 「量」: 「0.00000000」, 「貨幣」: 「BTC」}
我知道這是JSON包裹。但你能幫我,如何以標準形式在div
標籤中使用Jquery顯示這些數據?
你能幫我嗎?如何以純文本顯示。
當然,幫助將不勝感激!
我是否需要下載任何jar文件JSON? – 2014-12-02 12:48:39
我記得很確定,但認爲這是jsp的標準功能。 – x1x 2014-12-02 12:50:03
不,我只是問。我需要爲JSON下載任何jar文件嗎?你能告訴我下載JSON jar的鏈接嗎? – 2014-12-02 12:53:21