Contents

조회 수 8165 댓글 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. [ios] iOS 4.0 beta 에서 3.1.3으로 다운그레이드 하는 법

    Date2013.04.23 CategoryDevelop Byhooni Views37505
    Read More
  2. [ios] iOS 6.0 이상 회전 하기 (이전 버전과 비교 변경 부분)

    Date2014.01.27 CategoryDevelop Byhooni Views34192
    Read More
  3. [ios] iOS 7 이상 UIBarButtonItem 여백

    Date2014.03.27 CategoryDevelop Byhooni Views4058
    Read More
  4. [ios] iOS 8 개발자가 우선 알아야 할 3가지

    Date2014.10.02 CategoryDevelop Byhooni Views920
    Read More
  5. [ios] iOS In App Purchase #1 (코드 구현 전 웹 설정 작업)

    Date2013.11.20 CategoryDevelop Byhooni Views14523
    Read More
  6. [ios] iOS In App Purchase #2 (코드 구현)

    Date2013.11.20 CategoryDevelop Byhooni Views13780
    Read More
  7. [ios] iOS In App Purchase 코드 부분 샘플 1

    Date2013.11.20 CategoryDevelop Byhooni Views11771
    Read More
  8. [ios] iOS In App Purchase 코드 부분 샘플 2

    Date2013.11.20 CategoryDevelop Byhooni Views11289
    Read More
  9. [ios] iOS 사운드 관련 프레임워크

    Date2014.04.18 CategoryDevelop Byhooni Views3023
    Read More
  10. [ios] iOS 앱 아이콘을 만드는 유틸

    Date2015.01.03 CategoryDevelop Byhooni Views882
    Read More
  11. [ios] iOS 의 인앱구매 소개

    Date2014.04.29 CategoryDevelop Byhooni Views3840
    Read More
  12. [ios] iOS앱의 Xcode 빌드 과정

    Date2015.01.03 CategoryDevelop Byhooni Views2292
    Read More
Board Pagination Prev 1 ... 37 38 39 40 41 42 43 44 45 46 ... 98 Next
/ 98