검색결과 리스트
text파일에 해당되는 글 1건
- 2012.09.06 Text파일의 내용을 한줄씩 읽기
글
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
string line;
string[] StrArr;
using (StreamReader sr = new StreamReader("sample.txt", System.Text.Encoding.Default))
{
while ((line = sr.ReadLine()) != null)
{
StrArr = line.Split(' ');
...
}
}
'-- C#' 카테고리의 다른 글
프로그램적으로 파일업로드 (0) | 2012.11.23 |
---|---|
자동 리디렉션을 너무 많이 시도했습니다. (Too many automatic redirections attempted) (0) | 2012.10.25 |
Excel파일 읽기 (0) | 2012.09.06 |
How to Initialize Hosted WCF Services (0) | 2012.07.18 |
WCF Restful WebService (0) | 2012.06.21 |
RECENT COMMENT