일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- java
- javascript
- properties
- html
- NetBeans
- File
- CentOS
- 리눅스
- JSON
- 와일드카드
- 톰캣
- tomcat
- junit
- php
- 이클립스
- curl
- larravel
- error
- input
- MySQL
- 안드로이드
- DB
- Android
- ajax
- laravel
- jquery
- 정규식
- Linux
- Spring
- SeLinux
- Today
- Total
목록JSON (3)
합쭈기 programming
ajaxForm을 사용할 때 multipart로 파일 전송 시 json 파일 다운로드가 뜬다. PHP를 기준으로 content-type이 multipart일 때 response header를 $this->header('Content-Type', 'text/json'); 이렇게 해주고 script에서는 파일 전송일 때 $.parseJSON으로 파싱해서 사용한다.
parameter에 model객체와 vo객체 같이 들어갈 경우 에러!! @ResponseBody 어노테이션은 multipart/form-data 전송 시 IE 9이하에서는 json 파일로 받아버리니 일반 view로 매칭해서 사용해야 한다. html5도 표준됐고 마소에서는 스파르탄 출시 했으니 나아지겠지만..
protected boolean requestJson(final String addr, final int method, final String data) { if (chkHandler()) { new Thread(new Runnable() { String strJson = ""; @Override public void run() { // TODO Auto-generated method stub try { URL url = new URL(addr); if (url.getProtocol().toLowerCase().equals("http")) { HttpURLConnection httpConn = null; httpConn = (HttpURLConnection) url.openConnection(); htt..