์นดํ
๊ณ ๋ฆฌ ์์
jsp/servlet ๋ฆฌํ์คํธ ํ๊ธ์ฒ๋ฆฌ
๐ฉท ์ ๐งก
2010. 6. 10. 21:20
728x90
SMALL
๋ฆฌํ์คํธ๋ฐ์ ํ๊ธ์ฒ๋ฆฌ
String name = request.getParameter("name");
String newName = new String( name.getBytes("8859_1") , "euc-kr" );
out.println("๋น์ ์ ์ด๋ฆ์ : " + newName + "<br/>");
์ด๊ฑฐ๋๋
request.setCharacterEncoding("euc-kr");
String name = request.getParameter("name");
String newName = new String( name.getBytes("8859_1") , "euc-kr" );
out.println("๋น์ ์ ์ด๋ฆ์ : " + newName + "<br/>");
์ด๊ฑฐ๋๋
request.setCharacterEncoding("euc-kr");
728x90
LIST