0
我目前有一個servlet將POST上的JSON字符串返回給響應的輸出流。Java servlets和JSON解析
這是我的代碼:
...
response.setContentType("application/json");
PrintWriter out = response.getWriter();
out.print(jsonString);
out.flush();
我不知道如何處理這種在客戶端,因爲它只是在頁面上顯示的字符串。需要做什麼?
相關:http://stackoverflow.com/questions/4112686/how-to-use-servlets-and-ajax – BalusC