티스토리 뷰
using System;
using System.IO;
using System.Text;
//인코딩에 관한 내용이 들어있음
namespace ConsoleApplication1
{
class Class1
{
[STAThread]
static void
Main(string[] args)
{
Encoding encode = System.Text.Encoding.GetEncoding("ks_c_5601-1987");
FileStream fs = new FileStream(@"c:/temp/test.txt",FileMode.Open,FileAccess.Read);
StreamReader sr = new StreamReader(fs,encode);
//여기에 넣어주면 인코딩됨
string str = sr.ReadToEnd();
Console.WriteLine( str);
sr.Close();
fs.Close();
}
}
}
FileStream 읽어올때 한글깨짐 해결하자 ^^
출처: http://cafe.daum.net/_c21_/bbs_search_read?grpid=OVUm&fldid=7Iy9&datanum=39
'C# WinForm' 카테고리의 다른 글
int to float 형변환 (0) | 2019.04.04 |
---|---|
메인폼에서 서브폼에 값 전달 (0) | 2019.03.27 |
소켓 통신 (0) | 2019.02.25 |
C# 텍스트 박스 숫자만 입력 (0) | 2019.02.19 |
윈폼 프린터 세팅 (0) | 2019.02.19 |
- Total
- Today
- Yesterday
- Label Text LineBreak in Xaml
- WPF Scrollviewer in ScrollViwer
- WPF Textbox
- GetCellContent CheckBox Value
- 서버 수준의 URN 필터
- Xamarin.Ios Firebase Phone User Add
- Xamarin.Ios Firebase Phone Auth
- Microcharts
- c# Encrypt / Decrypt
- Xamarin Firebase Phone Auth
- SkiaSharp
- 연산자 뒤에 피연산자가 없습니다.
- Windows IIS FTP 디렉토리 목록 오류
- Entry '' has empty native path
- Embeded 한글Font적용
- WPF Datagrid Cell Value Change
- C# LINQ Left join
- 암호 마스터키
- Xamarin.Ios Firebase Phone SMS OTP Send
- WPF Excel Export Microsoft.Office.Interop 성능향상(열 기준으로 복사)
- Xamarin.Forms
- Xamarin reCAPTCHA
- FileStream Add Byte
- ssl_client_socket_impl.cc
- Xamarin Firebase Phone User Add
- Linux SSH Multi Computer Join
- Xamarin SMS OTP Send
- ClickOnce 인증서 인증기간 변경
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |