JSON—接收伺服器端傳來的資料

來源:互聯網
上載者:User

1.伺服器端傳送json格式的資料代碼如下(這裡指在servlet類中的情況):

import java.io.IOException;import java.io.PrintWriter;import javax.servlet.ServletException;import javax.servlet.http.HttpServlet;import javax.servlet.http.HttpServletRequest;import javax.servlet.http.HttpServletResponse;public class repjson extends HttpServlet {public repjson() {super();}public void destroy() {super.destroy(); // Just puts "destroy" string in log// Put your code here}        //主方法,通過doGet的response回傳json資料public void doGet(HttpServletRequest request, HttpServletResponse response)throws ServletException, IOException {response.setContentType("text/html");PrintWriter out = response.getWriter();String title="HelloJson";String a="J";String b="S";String c="O";String d="N";String xData="["+"\""+a+"\""+","+"\""+b+"\""+","+"\""+c+"\""+","+"\""+d+"\""+"]";String yData="["+4+","+3+","+2+","+1+"]";out.println("{" + "\"title\": \"" + title + "\"" + ","+ "\"xData\":" + xData + "," + "\"yData\":" + yData + "}");}public void init() throws ServletException {// Put your code here}}

2.用戶端接收json資料並以長條圖顯示代碼如下:

<%@ page language="java" pageEncoding="utf-8"%><%@ page contentType="text/html;charset=utf-8"%><script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script><script src="http://code.highcharts.com/modules/exporting.js"></script><script src="http://code.highcharts.com/highcharts.js"></script><script type="text/javascript">$(document).ready(function() {var options = {chart : {renderTo : 'container',type : 'column'},title : {text : ''},credits : {enabled : false},exporting : {enabled : true},plotOptions : {column : {pointPadding : 0.2,borderWidth : 0}},tooltip : {formatter : function() {return '' + this.x + ': ' + this.y + ' 次';}},legend : {enabled : false},xAxis : {categories : [],labels : {rotation : -45,align : 'right',style : {fontSize : '13px',fontFamily : 'Verdana, sans-serif'}}},yAxis : {min : 0,title : {text : '數量(次)'}},series : [ {name : "",data : []} ]};$.get('servlet/repjson', function(JSON) {JSON = eval("(" + JSON + ")");options.title.text = JSON.title;$.each(JSON.xData, function(key, value) {options.xAxis.categories.push(value);});$.each(JSON.yData, function(key, value) {options.series[0].data.push(value);});var chart = new Highcharts.Chart(options); });});</script><div id="container" style="min-width: 720px; height: 400px; margin: 0 auto"></div>

3.實驗結果圖如下:

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.