분류 전체보기129 쿠키에 값 저장하거나 꺼낼 때 한글 처리 //쿠키 저장할때. Cookie cookie = new Cookie("login", URLEncoder.encode(id,"UTF-8")); cookie.setPath("/"); cookie.setMaxAge(-1); resp.addCookie(cookie); resp.sendRedirect("indexServlet"); //쿠키에서 값 꺼낼때. for (Cookie cookie : cookies) { if("login".equals(cookie.getName())){ id = URLDecoder.decode(cookie.getValue(),"UTF-8"); } } 2015. 4. 22. sql 날짜, 언어등 세션 바꾸기. alter session set nls_date = 'RR/MM/DD'alter session set language='american' update s_emp set start_date = start_date - (365*100) ; 100년 빼주기.계정생성create user user명 identified by 비밀번호;grant connect,resource to user명; 계정 lock풀기system 계정에서alter user 계정명 identified by 비밀번호 account unlock; view 생성 권한 grant create view to scott; 2015. 4. 22. 한글처리 getByte 메소드 사용법. String firstName = new String(firstName.getBytes("iso8859-1"),"euc-kr"); 원하는 캐릭터 셋을로 바꾸어서 꺼내주면 된다.. 2015. 4. 22. select box 에 값 채우기!! select box 에 값 채우기!! taglib 이용해서 처리하기!! 2015. 4. 22. 이전 1 ··· 26 27 28 29 30 31 32 33 다음