下载与学习JSON的类库的图记录

如果各位人兄已经看完了本文章,您可能已经发现了一个共同点, encodeURI(encodeURI(fontname)),这就是解决问题的方法了,那么就可以进行试试了,希望对您有所帮助,下面就开始对JSON的类库学习吧。

因为我用JAVA开发,所以首先去要下载JSON的类库,我用的是http://www.sf.net提供的json类库。而json类库以信赖于几个其它的类库,JSON的类库下面把所需要的类截个图记录。

写服务器商程序,返回一个JSON格式的数据:

 
 
 
 
  1. package cn.limaoyuan.jquery.xml;  
  2. import java.io.IOException;  
  3. import java.io.PrintWriter;  
  4. import javax.servlet.ServletException;  
  5. import javax.servlet.http.HttpServlet;  
  6. import javax.servlet.http.HttpServletRequest;  
  7. import javax.servlet.http.HttpServletResponse;  
  8. public class JqueryServletForXml extends HttpServlet {  
  9. public void doGet(HttpServletRequest request, HttpServletResponse response)  
  10. throws ServletException, IOException {  
  11. System.out.println("into JqueryServletForXml");  
  12. response.setContentType("text/xml");  
  13. response.setCharacterEncoding("gbk");  
  14. String xml = " version=\"1.0\" encoding=\"gbk\"?><userlist>" +  
  15. "<user><name>limy_1<age>25_1" +  
  16. "<user><name>limy_2<age>25_2" +  
  17. "<user name=\"limy_3\" age=\"25_3\">" +  
  18. "<user name=\"limy_4\" age=\"25_4\">";  
  19. response.getWriter().println(xml);  
  20. }  
  21. public void doPost(HttpServletRequest request, HttpServletResponse response)  
  22. throws ServletException, IOException {  
  23. doGet(request, response);  
  24. }  
  25. }  
  26. 3.其中需要一个User类  
  27. package cn.limaoyuan.jquery.json;  
  28. public class User {  
  29. private String name;  
  30. private int age;  
  31. private String address;  
  32. private String phone;  
  33. private String mobile;  
  34. public String getAddress() {  
  35. return address;  
  36. }  
  37. public void setAddress(String address) {  
  38. this.address = address;  
  39. }  
  40. public int getAge() {  
  41. return age;  
  42. }  
  43. public void setAge(int age) {  
  44. this.age = age;  
  45. }  
  46. public String getMobile() {  
  47. return mobile;  
  48. }  
  49. public void setMobile(String mobile) {  
  50. this.mobile = mobile;  
  51. }  
  52. public String getName() {  
  53. return name;  

本文标题:下载与学习JSON的类库的图记录
本文网址:http://www.shufengxianlan.com/qtweb/news32/352632.html

网站建设、网络推广公司-创新互联,是专注品牌与效果的网站制作,网络营销seo公司;服务项目有等

广告

声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联