JAVA:json
JSONObject json = new JSONObject(); json.append("decodeContent", decodeContent);//decodeContent在我這裏是個字符串,append(String key, object value); out.println(json.toString()); //或者輸出字符串 out.println("{\"decodeContent\":\""+decodeContent+"\"}");
JS:app
//這個response是回調參數 response = JSON.stringify(response);//將對象轉換爲JSON字符串,這時候能夠直接打印 response = JSON.parse(response); //將JSON字符串解析爲JSON對象 console.log('decodeContent:'+response.decodeContent);//打印對象指定key的value