Contents

조회 수 8159 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
# 첫번째.. 방법..
<%@page contentType="text/html;charset=euc-kr"%>
<%request.setCharacterEncoding("euc-kr");%>

위에 것은 현재 파일의 한글이 정상적으로 보이게 하기 위함이고
아래것은 폼으로 넘어온 값중에 한글이 들어있을 경우 한글을 정상적으로 받기위한 것이다.

한글 코드셋은 euc-kr 말고 8859_1 도 있다.
혹시나, 위의 euc-kr 코드셋으로 설정 했는데 한글이 깨질 경우
8859_1 코드셋을 넣어서 테스트를 해보시기 바랍니다.


# 두번째.. 방법..
<%@ page contentType = "text/html; charset=8859_1" %>
<html>
<head>
<title>80port.com</title>
<meta http-equiv="Content-Type" content="text/html; charset=euc-kr">
</head>
<body>
<%
    out.println("한글 테스트");
%>
</body>
</html>

JSP의 페이지 지시자에 charset을 8859_1로 지정 하시고
html의 charset을 euc-kr을 지정해 주세요.
DB는 물론이고 폼값을 받았을 경우에도 한글처리를 안해주셔도 됩니다.

----------------------------------
출처 : http://www.80port.com


?

  1. [c] 거리와 각도를 입력받아서 좌표로 변환

    Date2013.04.23 CategoryDevelop Byhooni Views10812
    Read More
  2. [c++] 퍼즐 버블버블 간단한 원리(사용공식)

    Date2013.04.23 CategoryDevelop Byhooni Views9953
    Read More
  3. [c] 문자열 자르는 함수(strtok) 예제

    Date2013.04.23 CategoryDevelop Byhooni Views12172
    Read More
  4. [ms-sql] 프로시져 예제..

    Date2013.04.23 CategorySystem/OS Byhooni Views13403
    Read More
  5. 객체지향 프로그래밍에 대한 개념.. (객체)

    Date2013.04.23 CategoryDevelop Byhooni Views7308
    Read More
  6. [jsp] 초간단한 include 구문 예제..

    Date2013.04.23 CategoryDevelop Byhooni Views7225
    Read More
  7. [unix] AIX쉘 초기 파일 (.cshrc)

    Date2013.04.23 CategorySystem/OS Byhooni Views10288
    Read More
  8. [php] 데이터를 엑셀,워드 형태로 변환할 때 헤더(ms-office)

    Date2013.04.23 CategoryDevelop Byhooni Views7486
    Read More
  9. [jsp] 페이지에 한글이 정상적으로 보이지 않을 때..

    Date2013.04.23 CategoryDevelop Byhooni Views8159
    Read More
  10. [asp] 기본 문법과 제어문

    Date2013.04.23 CategoryDevelop Byhooni Views7074
    Read More
  11. [asp] 문자열 관련 함수 요약

    Date2013.04.23 CategoryDevelop Byhooni Views7775
    Read More
  12. [asp] 문자열 넘겨받기 (get,post)

    Date2013.04.23 CategoryDevelop Byhooni Views8677
    Read More
Board Pagination Prev 1 ... 59 60 61 62 63 64 65 66 67 68 ... 98 Next
/ 98