일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 선택적조인
- node.js
- tomcat
- JDOM
- jQuery
- phonegap
- 가우스
- Ajax
- dock
- swingx
- JSON
- 전자정부프레임워크
- PHP
- Eclipse
- MySQL
- sencha touch
- MFC
- GPS
- oracle
- PLSQL
- Android
- Spring
- appspresso
- rowspan
- Struts
- ibsheet
- iBATIS
- WebLogic
- jsr 296
- Google Map
- Today
- Total
목록전체 글 (633)
Where The Streets Have No Name
JDBC Code Templates 1. Connection *. To open a connection using thin driver : DriverManager.getConnection("jdbc:oracle:thin:@::", "scott", "tiger"); OR DriverManager.getConnection("jdbc:oracle:thin:@(description=(address=(host=)(protocol=tcp)(port=))(connect_data=(sid=)))", "scott","tiger"); *. To open a connection using OCI driver. To use the default connection. DriverManager.getConnection("jdb..
http://okjsp.pe.kr/bbs?act=VIEW&seq=62029&bbs=bbs4&keyfield=content&keyword=&pg=5 String[] seq = req.getParameterValues("seq"); String[] code = req.getParameterValues("code"); String[] name_arr = new String[seq.length]; System.out.println("seq.length : " + seq.length); System.out.println("code.length : " + code.length); for(int i=0;i
복사와 제거 예제 1 2 3 4 5 6 7 8 9 이동과 제거 예제 1 2 3 4 5 6 7 8 9
http://www.microsoft.com/downloads/details.aspx?FamilyID=e59c3964-672d-4511-bb3e-2d5e1db91038&displaylang=en
http://okjsp.pe.kr/bbs?act=VIEW&seq=41005&bbs=bbs4&keyfield=subject&keyword=tomcat&pg=2파라미터의 한글처리를 위해 request.setCharacterEncoding 을 사용하거나 Characterset Encoding Filter를 사용할텐데요.. Servlet 2.3 스펙에 의하면 이것이 Request Body 에만 적용이 됩니다. 톰캣 4.1.29 및 5.0.x 버전에서는 이를 적용하여 request.setCharacterEncoding에 의해 설정된 인코딩이 POST방식의 파라미터에만 적용됩니다. GET방식의 파라미터에는 적용이 되지 않네요.GET방식의 파라미터가 들어있는 QueryString은 URIEncoding 에 설정된 캐..