일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 단축키
- oracle
- MS
- 비주얼스튜디오
- CONVERT()
- 이클립스
- attr()
- DataGrid
- Excel
- windows
- microsoft
- c#
- Winform
- 윈도우
- 마이크로소프트
- MSSQL
- jQuery
- ASP
- aspnet
- 자바스크립트
- 리포팅서비스
- 윈폼
- SSRS
- 오라클
- 프로시저
- 엑셀
- javascript
- IIS
- 태그를 입력해 주세요.
- replace()
- Today
- Total
목록jsp (2)
DJ메탈짱™의 Free Style
서버도 잘 구동되고 프로그램도 잘 동작하는데 특정 화면에 들어가면 아래와 같은 에러가 발생한다. HTTP Status 500 - Unable to compile class for JSP: -------------------------------------------------------------------------------- type Exception report message Unable to compile class for JSP: description The server encountered an internal error that prevented it from fulfilling this request. exception org.apache.jasper.JasperException: Una..
jsp에서 팝업창으로 한글값을 던질때 encodeURIComponent로 인코딩하여 전달하고, 서블릿으로도 문제없이 넘기고 있다고 생각했는데, 실제 컨트롤러(?)를 지나고 오면 디코딩이 되지 않고 한글이 깨져서 나옴. 1. 팝업창의 서블릿에서 아래와 같이 Character를 설정 해줘도 깨짐 request.setCharacterEncoding("euc-kr"); 2. URLDecoder도 여전히 깨짐. URLDecoder.decode(한글) 3. 결과적으로 아래와 같은 방법으로 해결되었고, 펌글의 상세한 내용을 참고하면 되겠음. String std_nm = map.getString("std_nm"); std_nm = new String(std_nm.getBytes("8859_1"), "UTF-8"); 1..