본문 바로가기
프로그래밍/C#

[C#] Txt 파일에 한글을 읽거나 쓸 때 깨진다면?

by JR2 2021. 3. 16.
string textValue = System.IO.File.ReadAllText(path); // 읽을 때 한글이 깨짐
string textValue = System.IO.File.ReadAllText(path, Encoding.Default); // 안 깨짐

System.IO.File.WriteAllText(savePath, textValue); // 파일 쓸 때 한글이 깨짐.
System.IO.File.WriteAllText(savePath, textValue, Encoding.Default); // 파일 쓸 때 깨지지 않음.

Encoding.Defaul를 해주면 안깨진다.

 

진짜다.

댓글