์นดํ…Œ๊ณ ๋ฆฌ ์—†์Œ

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");
728x90
LIST