All kinds of tools you use (do not like to spray)

Source: Internet
Author: User

1:list Turn JSON

 Public StaticString List2jsonarray (List list) {StringBuffer str=NewStringBuffer ("["); if(List! =NULL&& list.size () > 0) {            intLen =list.size (); Object Map=NULL;  for(inti = 0; i < Len; i++) {Map=List.get (i); if(I > 0) {str.append (",");            } str.append (Jsonutil.object2json (map)); }} str.append ("]"); returnstr.tostring (); }

2:ajax returning a JSON string to the front end

//returns a JSON string to the front end     Public voidoutstring (String json) {printwriter print=NULL; Try{httpservletresponse response; Response= This. GetResponse (); Response.setcontenttype ("Text/json;charset=utf-8"); Response.setheader ("Cache-control", "No-cache"); Response.setheader ("Pargma", "No-cache"); Response.setdateheader ("Expires", 0); Print= This. GetResponse (). Getwriter ();        Print.write (JSON); } Catch(IOException e) {e.printstacktrace (); }    }

First eat to the other slowly add hey

All kinds of tools you use (do not like to spray)

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.