zoukankan      html  css  js  c++  java
  • JSON封装与解析

    servlet端封装成json格式

        public void doGet(HttpServletRequest request, HttpServletResponse response)
                throws ServletException, IOException {
    
            response.setContentType("text/html; charset=UTF-8");
            PrintWriter out = response.getWriter();
            DBQueryImpl query = new DBQueryImpl();
            ArrayList<NoticeBean> _list = query.getNotice();<span style="white-space:pre">    </span>//返回一个NoticeBean类
            // 转为json格式
            // JSONArray array = JSONArray.fromObject(_list);
    
            JSONArray array = new JSONArray();
            array.addAll(_list);
            // 打印到网页上,不要打印方括号
    
            String str=array.toString();
            
            out.write(str);
    
            out.flush();
            out.close();
        }

    android端解析出来

    private void getJSONString() {
            String urlPath = "http://192.168.1.102:8080/epay_server/QueryNotice";
            HttpClient client = new DefaultHttpClient();
            HttpPost post = new HttpPost(urlPath);
            try {
                InputStream responseStream = client.execute(post).getEntity()
                        .getContent();
                // 记得转换成gbk编码
                BufferedReader bufferedReader = new BufferedReader(
                        new InputStreamReader(responseStream, "UTF-8"));
                String webContentString = bufferedReader.readLine();
                System.out.println("webCont==>" + webContentString);
    
                // ItemParent item = new Gson().fromJson(webContentString,
                // ItemParent.class);
                // 生成类数组
                NoticeBean[] _notice = new Gson().fromJson(webContentString,<span style="white-space:pre">    </span>//自动解析成NoticeBean类
                        NoticeBean[].class);
                ArrayList<NoticeBean> _list = new ArrayList<NoticeBean>();
                for (NoticeBean noticeBean : _list) {
                    _list.add(noticeBean);
                }
    
    //            遍历list表
                for (int i = 0; i < _notice.length; i++) {
                    System.out.println(_notice[i].get_content());
                }
            } catch (Exception e) {
                System.out.println("解析失败!");
            }
        }
  • 相关阅读:
    安装scrapy解决Microsoft Visual C++ 14.0 is required...
    django一对多模型以及如何在前端实现
    django实现分页功能
    django实现搜索功能
    pycharm里生成requirements.txt
    ubuntu中pwntools安装
    获取一个图片的颜色html代码
    对class文件进行反编译
    Django项目将debug模式设置为false时,静态文件出错
    Django中在xadmin中集成DjangoUeditor
  • 原文地址:https://www.cnblogs.com/zhujiabin/p/5549460.html
Copyright © 2011-2022 走看看