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를 해주면 안깨진다.
진짜다.
'프로그래밍 > C#' 카테고리의 다른 글
[C#] List를 간단하게 사용해보자 (0) | 2021.03.16 |
---|---|
[C#] ListBox를 사용해보자 (추가,삭제,Clear) (0) | 2021.03.16 |
[C#] 갑자기 삭제된 개체에 액세스 할 수 없습니다 라는 에러가 발생한 경우 (0) | 2021.03.16 |
[C#] Delay 함수. Thread Sleep 대신 쓸만함. (1) | 2021.03.16 |
[C#] File Exist 문서내에 파일이 존재하는지 (1) | 2021.03.16 |
댓글