DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> XML學習教程 >> XML詳解 >> 詳解相互轉換JSON-lib包的相關介紹
詳解相互轉換JSON-lib包的相關介紹
編輯:XML詳解     

在編寫代碼前,我想確認大家對REST都有一個很好的理解,為什麼她適合JSON-lib包。首先,從技術角度上說,REST不僅僅可以應用到API,她更多的只是一個概念,希望本文能教會你更多東西。

1、前後台所有文件統一用utf-8編碼方式。

2、Ext.lib.AJax.defaultPostHeader += '; charset=utf-8'加在Ext.onReady塊裡,此方法可以解決用EXT在POST時的中文亂碼問題。

在JSON-lib包中設置Content-Type:text/JSon;charset=utf-8,在Java中實現方法:response.setContentType("text/JSon; charset=utf-8"),此方法可以解決用EXT在顯示後台中文時的亂碼問題

如果不行。試試response.setContentType("application/JSon; charset=utf-8")這裡設置是不能放過濾器時的。原因了解一下過濾器的運行順序就知道。

  • 闡述JSON序列化的解決方法進行相關介紹
  • 使用簡單的JSON 方法調用進行說明調查
  • 處理JSON時注意的相關問題進行說明描述
  • 使用服務器進行處理JSON 解析器說明介紹
  • 大致說明JSON 對象的相關使用字符

JSON-lib包是一個beans,collections,maps,Java arrays 和XML和JSON互相轉換的包。在本例中,我們將使用JSONObject類創建JSONObject對象,然後我們打印這些對象的值。為了使用JSONObject對象,我們要引入"net.sf.JSon"包。為了給對象添加元素,我們要使用put()方法。

  1. import net.sf.json.JSONArray;     
  2. import net.sf.json.JSONObject;     
  3.     
  4. public class JSONObjectSample {     
  5.          
  6.     //創建JSONObject對象     
  7.     private static JSONObject createJSONObject(){     
  8.         JSONObject JSonObject = new JSONObject();     
  9.         JSonObject.put("name", "kevin");     
  10.         JSonObject.put("Max.score", new Integer(100));     
  11.         JSonObject.put("Min.score", new Integer(50));     
  12.         JSonObject.put("nickname", "picglet");     
  13.         return JSonObject;     
  14.     }     
  15.     public static void main(String[] args) {     
  16.         JSONObject JSonObject = JSONObjectSample.createJSONObject();     
  17.         //輸出JSonobject對象     
  18.         System.out.println("JSonObject==>"+JSonObject);     
  19.              
  20.         //判讀輸出對象的類型     
  21.         boolean isArray = JSonObject.isArray();     
  22.         boolean isEmpty = JSonObject.isEmpty();     
  23.         boolean isNullObject = JSonObject.isNullObject();     
  24.         System.out.println("isArray:"+isArray+" isEmpty:"+isEmpty+" isNullObject:"+isNullObject);     
  25.              
  26.         //添加屬性     
  27.         JSonObject.element("address", "swap lake");     
  28.         System.out.println("添加屬性後的對象==>"+JSonObject);     
  29.              
  30.         //返回一個JSONArray對象     
  31.         JSONArray JSonArray = new JSONArray();     
  32.         jsonArray.add(0, "this is a JSonArray value");     
  33.         jsonArray.add(1,"another JSonArray value");     
  34.         jsonObject.element("jsonArray", JSonArray);     
  35.         JSONArray array = JSonObject.getJSONArray("JSonArray");     
  36.         System.out.println("返回一個JSONArray對象:"+array);     
  37.         //添加JSONArray後的值     
  38.         //{"name":"kevin","Max.score":100,"Min.score":50,"nickname":"picglet","address":"swap lake",     
  39.         //"jsonArray":["this is a jsonArray value","another JSonArray value"]}     
  40.         System.out.println(JSonObject);     
  41.              
  42.         //根據key返回一個字符串     
  43.         String JSonString = JSonObject.getString("name");     
  44.         System.out.println("JSonString==>"+JSonString);     
  45.     
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved