링크 : https://trac.ffmpeg.org/wiki/x264EncodingGuide

'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
posted by 뚱2

링크 : 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
posted by 뚱2

Window -> Preferences -> General -> Content Types -> Text -> JSP -> Default-Encoding -> [변경]





posted by 뚱2

링크 : http://www.phpschool.com/gnuboard4/bbs/board.php?bo_table=qna_other&wr_id=124408 

 

 

 

seanliang-ConvertToUTF8-8ab4487.zip

'IDE/Tool > Sublime Text' 카테고리의 다른 글

[Sublime Text] Sumlime Text OS X Command Line Install  (0) 2015.12.24
posted by 뚱2

한글주소를 URL뒤에 붙이는 쿼리 스트링으로 전달하면 깨지는 경우가 발생합니다.

이럴때는 인코딩을 해줘야 합니다.



참고 : http://www.w3schools.com/jsref/jsref_obj_global.asp


위에서


FunctionDescription
decodeURI()Decodes a URI
decodeURIComponent()Decodes a URI component
encodeURI()Encodes a URI
encodeURIComponent()Encodes a URI component
escape()Encodes a string


함수를 이용하시면 됩니다.

posted by 뚱2

[Jeus] encoding 설정

WAS/Jeus 2012. 7. 7. 20:59

[Jeus Home] -> config -> [node name] -> [nodename]_servlet_[engine name] -> WEBMain.xml 수정 

default는 WAS가 인코딩을 결정할수 없을때 기본으로 선택하는것

forced는 모든것을 일률적으로 강제하는것





    
        MyGroup
        true
        
            
				UTF-8
                UTF-8
            
            
				UTF-8
                UTF-8
            
            
				UTF-8
                UTF-8
            
        
		
            
                http1
                8088
                
                    10
                    20
                    1
                
            
            
                webtob1
                9900
                8192
                
                   1
                   5
                   1
                   30000
                
                localhost
                MyGroup
            
        
        
            
                
                    
                        handler1
                        1
                    
                
            
        
    
    
        false
    


'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
posted by 뚱2

[JSP] UrlEncoding 하기

Java/Jsp 2011. 4. 25. 12:05

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.
 

posted by 뚱2

다른 사람의 소스를 임포트 하면 소스 주석이 깨져서 보이는 경우가 있습니다.
안드로이드 프로젝트를 생성할때 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 추가 설정입니다.









posted by 뚱2