Sunday, May 3, 2015

C# 파일 읽기 유니코드 문제

// 파일을 읽을때 유니코드 문제를 드디어 해결했다.
// 문제는 Encoding parameter부분이 default parameter가 Encoding.Default가 아니라는 점이다. 따라서 명시적으로 Default Encoding이라고 해주어야 함

FileStream fs = new FileStream(fn, FileMode.Open, FileAccess.Read);
StreamReader sr = new StreamReader(fs, Encoding.Default);
string s = sr.ReadLine();

No comments:

Post a Comment