250x250
Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- AJAX
- Thymeleaf
- 설정
- 오픈소스
- git
- Source
- STS
- maven
- Open Source
- ubuntu
- Exception
- Python
- PostgreSQL
- MSSQL
- oracle
- jpa
- error
- Spring Boot
- JavaScript
- SpringBoot
- Eclipse
- IntelliJ
- Tomcat
- Docker
- Core Java
- JDBC
- 문서
- MySQL
- spring
- myBatis
Archives
- Today
- Total
목록character set (1)
헤르메스 LIFE
[Source] Character Set Conversion
/** * Character Set를 ISO-8859-1로 컨버전 * @param str 변환할 문자 * @return String 변환문자 */ public String convISO(String str) { String tmp = new String(""); if(str==null||str.length()==0) return ""; try { tmp = new String(str.getBytes("EUC-KR"), "ISO-8859-1"); } catch (UnsupportedEncodingException uee) { log(CLASS_NAME + ".convISO()","Character Set변환을 실패했습니다."+uee.toString()); } catch (Exception e) { log(..
Core Java
2010. 10. 20. 15:39