導航:首頁 > 編程語言 > java將string轉為json

java將string轉為json

發布時間:2024-11-23 06:19:45

A. java中String轉jsONOBJECT,數字精度丟失

復制的你的代碼,運行結果如下:


如果實在不行,你把JSONObject.fromObject(xml);換成JSONObject.fromString(xml);試試。

B. java實體類怎麼轉換成json。

導入Google的包gson-2.2.4.jar
然後實例化Gson
static Gson gosn = new Gson();
String json = gosn.toJson(hashMap); //這里放一個對象,什麼對象都可以。
轉化後就是Json,功能強大很多,也簡單很多。

json-lib-2.4-jdk15.jar
ezmorph-1.0.6.jar
轉換的話這樣用
String s= JSONArray.fromObject(user).toString();

spring-webmvc4
在方法上加入@ResponseBody,同時方法返回值為實體對象,spring會自動將對象轉換為json格式,並返回到客戶端

C. java如何返回json格式

publicstaticvoidreturnJson(HttpServletResponseresponse,CharSequencetext)
throwsException{
response.setContentType("application/json;charset=UTF-8");
response.setHeader("Cache-Control","no-store");
response.setHeader("Pragrma","no-cache");
response.setDateHeader("Expires",0);
response.getWriter().write(text.toString());
}

其中text這個是JSONObject或者Map

response.setContentType("application/json;charset=UTF-8");這個表示以json格式返回

前台需要eval接收到的版數據,就是權json格式了

D. java對String進行json編碼 實現類似與PHP中json_encode 方法的功能

一,json_encode作用:
json_encode — 對變數進行 JSON 編碼。
說明:string json_encode ($value ),返回 value 值的 JSON 形式。
參數:待編碼的 value ,除了resource 類型之外,可以為任何數據類型
該函數只能接受 UTF-8 編碼的數據(譯註:指字元/字元串類型的數據)
返回值:編碼成功則返回一個以 JSON 形式表示的 string 。
二,客戶端用java語言解碼:
方法一:
public String unescapeUnicode(String str){
StringBuffer b=new StringBuffer();
Matcher m = Pattern.compile("\\\\u([0-9a-fA-F]{4})").matcher(str);
while(m.find())
b.append((char)Integer.parseInt(m.group(1),16));
return b.toString();
}

方法二:
直接使用unescapeUnicode()方法解碼就可以了。
使用 json_simple.jar 包解析
下載地址:http://code.google.com/p/json-simple/downloads/list
JSON.simple是一個簡單的Java類庫,用於解析和生成JSON文本。不依賴於其它類庫,性能高。
Object obj=JSONValue.parse(jsonStr);
return obj.toString();

E. java中字元串怎麼轉json

string類型如果要轉換成json的話,就需要寫成這樣的形式,如下:
String jsonStr ="{'id':'11','parentId':'root','refObj':{'existType':'exist','deptType':'emp','treeNodeType':'dept'}}";
JSONObject jsonObj = new JSONObject(jsonStr);
JSONObject refObj = new JSONObject(jsonObj.getString("refObj"));
String existType = refObj.getString("existType");
System.out.println(existType);
jar使用的是org.json.jar

閱讀全文

與java將string轉為json相關的資料

熱點內容
要我蘋果賬號密碼忘記了怎麼辦 瀏覽:578
快快卡在配置游戲文件 瀏覽:393
數據包重發時間怎麼調整 瀏覽:882
youtubeapp怎麼下載 瀏覽:366
編程檢測是什麼 瀏覽:753
網路攝像機的傳輸距離 瀏覽:941
超值貓qq群購秒殺群 瀏覽:138
pdf文件能備注嗎 瀏覽:174
html可視化數據源碼在哪裡 瀏覽:387
adobereader專用卸載工具 瀏覽:28
vivo手機數據如何備份 瀏覽:888
ithmb文件轉換器 瀏覽:66
看病找什麼網站好 瀏覽:579
linux如何查看文件系統 瀏覽:581
linux統計點頻率 瀏覽:627
全民泡泡大戰安琪兒升級 瀏覽:620
編程scratch如何保存 瀏覽:750
aspnetmvc傳json 瀏覽:132
如何下載看神片的狐狸視頻app 瀏覽:579
怎樣將木紋文件添加到cad 瀏覽:223

友情鏈接