일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- Struts
- oracle
- rowspan
- MFC
- 전자정부프레임워크
- JDOM
- appspresso
- WebLogic
- PLSQL
- Ajax
- jsr 296
- jQuery
- swingx
- iBATIS
- 선택적조인
- JSON
- node.js
- Google Map
- sencha touch
- Spring
- phonegap
- PHP
- MySQL
- ibsheet
- Eclipse
- 가우스
- tomcat
- Android
- dock
- GPS
Archives
- Today
- Total
Where The Streets Have No Name
spring에서 json, xml데이터 출력 본문
@RequestMapping(value = "/test/Test2Json.do")
public void test2json(@RequestParam(value="name", required=false) String name,
HttpServletResponse response) throws IOException{
System.out.println("name: "+name);
JSONObject obj=new JSONObject();
obj.put("name","홍길동");
obj.put("num",new Integer(100));
obj.put("balance",new Double(1000.21));
obj.put("is_vip",new Boolean(true));
obj.put("nickname",null);
//out.write(obj.toJSONString());
response.setContentType("application/json");
response.setCharacterEncoding("utf-8");
response.getWriter().write(obj.toJSONString());
}
@RequestMapping(value = "/test/Test3Xml.do")
public void test3xml(@RequestParam(value="name", required=false) String name,
HttpServletResponse response) throws IOException{
Element carElement = new Element("car"); // root
Document myDocument = new Document(carElement); // 문서를 생성하고 엘리먼트를 추가..
carElement.setAttribute(new Attribute("vin","vinvalue"));
Element make = new Element("make");
carElement.addContent(new Element("make").addContent("토요타"));
carElement.addContent(new Element("model").addContent("Celica"));
carElement.addContent(new Element("year").addContent("1997"));
carElement.addContent(new Element("color").addContent("green"));
carElement.addContent(new Element("license").addContent("12ADFDS1").setAttribute("state","CA"));
carElement.addContent(new Comment("차설명"));
// Format을 맞추자.
Format f = Format.getCompactFormat();
f.setEncoding("utf-8");
f.setIndent(" ");
XMLOutputter outputter = new XMLOutputter(f);
//outputter.output(myDocument, out);
response.setContentType("application/xml");
response.setCharacterEncoding("utf-8");
response.getWriter().write(outputter.outputString(myDocument));
}