검색결과 리스트
Encoding에 해당되는 글 8건
- 2013.12.06 [FFmpeg] FFmpeg x264EncodingGuide
- 2013.08.02 [Maven] [WARNING] Using platform encoding (UTF-8 actually) to copy filtered resources, i.e. build is platform dependent!
- 2013.04.03 [Eclipse] 인코딩 에러 Some characters cannot be mapped using "ISO-8859-1" character encoding.
- 2012.08.01 [Sublime Text2] Euc-kr 설정
- 2012.07.24 [javascript] 한글주소 URL 인코딩
- 2012.07.07 [Jeus] encoding 설정
- 2011.04.25 [JSP] UrlEncoding 하기
- 2011.02.24 [Eclipse] Encoding 설정하기
글
'C/C++ > FFmpeg' 카테고리의 다른 글
[FFmpeg] 인코딩 과정 정리 (0) | 2014.01.03 |
---|---|
[FFmpeg] 동영상 정보 확인 하는 프로그램 (0) | 2013.08.15 |
[FFmpeg] Water Mark (0) | 2013.06.29 |
[FFmpeg] 옵션 (0) | 2013.06.11 |
[FFmpeg] 동영상의 기본적인 이해 (0) | 2013.05.16 |
트랙백
댓글
글
[Maven] [WARNING] Using platform encoding (UTF-8 actually) to copy filtered resources, i.e. build is platform dependent!
Java/Maven 2013. 8. 2. 13:20
설정
링크 : http://maven.apache.org/general.html#encoding-warning
<!-- properties에 project.build.sourceEncoding 추가 -->
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
'Java > Maven' 카테고리의 다른 글
[Maven] Generating a Custom Offline Repository (0) | 2015.10.02 |
---|---|
[Maven] Maven Plugin development (0) | 2015.08.01 |
트랙백
댓글
글
[Eclipse] 인코딩 에러 Some characters cannot be mapped using "ISO-8859-1" character encoding.
IDE/Tool/Eclipse 2013. 4. 3. 10:04
설정
Window -> Preferences -> General -> Content Types -> Text -> JSP -> Default-Encoding -> [변경]
'IDE/Tool > Eclipse' 카테고리의 다른 글
[Eclipse] svn ignore 하기 (0) | 2013.04.05 |
---|---|
[Eclipse] Link With Editor (0) | 2013.04.03 |
[Eclipse] eclipse.ini 설정 (0) | 2013.04.02 |
[Eclipse] Plug-In 개발 (0) | 2012.10.25 |
[Eclipse] Access restriction: The type JPEGImageEncoder is not accessible due to restriction on required library (0) | 2012.10.20 |
트랙백
댓글
글
'IDE/Tool > Sublime Text' 카테고리의 다른 글
[Sublime Text] Sumlime Text OS X Command Line Install (0) | 2015.12.24 |
---|
트랙백
댓글
글
한글주소를 URL뒤에 붙이는 쿼리 스트링으로 전달하면 깨지는 경우가 발생합니다.
이럴때는 인코딩을 해줘야 합니다.
참고 : http://www.w3schools.com/jsref/jsref_obj_global.asp
위에서
Function | Description |
---|---|
decodeURI() | Decodes a URI |
decodeURIComponent() | Decodes a URI component |
encodeURI() | Encodes a URI |
encodeURIComponent() | Encodes a URI component |
escape() | Encodes a string |
함수를 이용하시면 됩니다.
'JavaScript > JavaScript' 카테고리의 다른 글
[JavaScript] IE 메모리 릭 찾기 (0) | 2012.07.27 |
---|---|
[javascript] 동적으로 .js 파일을 인클루드 하는 함수 (0) | 2012.07.26 |
[JavaScript] 선언과 할당의 미묘한 차이가 런타임시 에러를 발생시킨다. (0) | 2012.07.15 |
[JavaScript] undefiend와 null 차이 (0) | 2012.07.15 |
[Javascript] DateAdd (0) | 2012.07.14 |
트랙백
댓글
글
[Jeus Home] -> config -> [node name] -> [nodename]_servlet_[engine name] -> WEBMain.xml 수정
default는 WAS가 인코딩을 결정할수 없을때 기본으로 선택하는것
forced는 모든것을 일률적으로 강제하는것
<!--?xml version="1.0"?-->
<!--?XML:NAMESPACE PREFIX = [default] http://www.tmaxsoft.com/xml/ns/jeus NS = "http://www.tmaxsoft.com/xml/ns/jeus" /--><web-container xmlns="http://www.tmaxsoft.com/xml/ns/jeus">
<context-group>
<group-name>MyGroup</group-name>
<print-error-to-browser>true</print-error-to-browser>
<encoding>
<request-encoding>
<default>UTF-8</default>
<forced>UTF-8</forced>
</request-encoding>
<response-encoding>
<default>UTF-8</default>
<forced>UTF-8</forced>
</response-encoding>
<postdata-encoding>
<default>UTF-8</default>
<forced>UTF-8</forced>
</postdata-encoding>
</encoding>
<webserver-connection>
<http-listener>
<listener-id>http1</listener-id>
<port>8088</port>
<thread-pool>
<min>10</min>
<max>20</max>
<step>1</step>
</thread-pool>
</http-listener>
<webtob-listener>
<listener-id>webtob1</listener-id>
<port>9900</port>
<output-buffer-size>8192</output-buffer-size>
<thread-pool>
<min>1</min>
<max>5</max>
<step>1</step>
<max-idle-time>30000</max-idle-time>
</thread-pool>
<webtob-address>localhost</webtob-address>
<registration-id>MyGroup</registration-id>
</webtob-listener>
</webserver-connection>
<logging>
<access-log>
<handler>
<file-handler>
<name>handler1</name>
<valid-day>1</valid-day>
</file-handler>
</handler>
</access-log>
</logging>
</context-group>
<session-cluster>
<session-routing>false</session-routing>
</session-cluster>
</web-container>
'WAS > Jeus' 카테고리의 다른 글
[Jeus] Jeus5 스펙 (0) | 2013.04.02 |
---|---|
[Jeus] Tmax jeus (0) | 2012.06.20 |
[Jeus] 환경셋팅 (0) | 2012.06.14 |
[Jeus 5.0] Eclipse 에서 Jeus 디버깅이 안될때... (0) | 2012.06.14 |
트랙백
댓글
글
Jsp 페이지에서 내부적으로 리다이렉트 하는 경우가 발생하면
URL 인코딩을 해서 글자가 깨지는 경우가 발생하는데 그럴때 인코딩을 하면된다.
클래스
java.net.URLEncoder
Method Summary | |
---|---|
static String |
encode(String s) Deprecated. The resulting string may vary depending on the platform's default encoding. Instead, use the encode(String,String) method to specify the encoding. |
static String |
encode(String s, String enc) Translates a string into application/x-www-form-urlencoded format using a specific encoding scheme. |
'Java > Jsp' 카테고리의 다른 글
[Jsp] Java Custom Tag (0) | 2012.02.09 |
---|---|
[Jsp] JSTL <c:forEach></c:forEach> 반복처리 (0) | 2011.11.07 |
[JSP] 물리적 경로를 웹상의 상대 경로로 변환 (0) | 2011.08.23 |
[JSP] <jsp:include>와 <%@ page include %>의 차이 (0) | 2011.04.25 |
[JSP] Procedure Call (0) | 2011.03.17 |
트랙백
댓글
글
안드로이드 프로젝트를 생성할때 UTF-8로 생성을 많이 합니다.
그런데 시스템 디폴트는 Windows XP의 경우 MS949입니다.
따라서 UTF-8로 만들어진 프로젝트나 소스를 임포트 하면은 소스의 한글이 깨져서 보입니다.
Endcoding을 수정하는 방법은 크게 2가지 입니다.
1. Project->Properties->Resource->Text file encoding
2. Window->Preferences->General->Editors->Text Editors->Dictionaries->Encoding
1, 2번 둘다 encoding 하는 방법은 같지만 1번은 특정 프로젝트만 적용하는 옵션이고 2번은 이클립스 설정 전체를
변경하는 옵션입니다.
* 2012-06-21 추가 설정입니다.
'IDE/Tool > Eclipse' 카테고리의 다른 글
[Eclipse] 탭을 공백으로 변환하기 Insert Spaces for tabs (0) | 2011.08.31 |
---|---|
[Eclipse] eclipse 파일검색 방법 (1) | 2011.08.18 |
[Eclipse] 클래스 자동 임포트 단축키 (0) | 2011.02.12 |
[Eclipse] 단축키 수정하기 (0) | 2011.02.10 |
[Eclipse] 주석의 문법검사 비활성화 (0) | 2010.12.10 |
RECENT COMMENT