ObjectMapper 将对象,list,string封装成json

  对象          Udate udate= new Udate();   

   list           List lst = null ;

                   lst = navService.NavList(userid);

    String      String bg ="/index/bg/win2.jpg";


    Map  mp =new HashMap();

    mp.put("islogin", islogin);

    mp.put("u", udate);



    mp.put("picmodle", picmodle);

    mp.put("lst", lst);

    mp.put("bg", bg);

    

    ObjectMapper objectMapper = new ObjectMapper();

    String json = objectMapper.writeValueAsString(mp);

response.getWriter().write(json);

response.getWriter().flush();


相关标签:


评论: