|
1. 내 프로그램에서 같은 디렉토리에 있는 파일(txt) 안에 있는 내용을 가지고 응용하고 싶을때 사용한다.
2. txt 파일만 테스트 해봤지만 다른것도 가능할듯..
STR_CD.txt 파일 내용
0110,공일일공 0111,공일일일 0112,공일일이 0113,공일일삼 0114,공일일사 0115,공일일오 0116,공일일육 0117,공일일칠 0118,공일일팔 0119,공일일구
c# 소스
//해당파일이 있는지 확인 if (File.Exists("./STR_CD.txt")) { string temp = ""; temp = System.IO.File.ReadAllText("./STR_CD.txt", Encoding.Default); //엔터를 기준으로 이미정의한 배열에 넣는다. new_STR_CD_List = temp.Split('\n'); new_STR_NM_List = temp.Split('\n'); //아래는 응용 자기 편한대로 하세요.~~ for (int i = 0; i < new_STR_CD_List.Length; i++) { new_STR_CD_List[i] = new_STR_CD_List[i].Trim(); new_STR_NM_List[i] = new_STR_NM_List[i].Trim(); if (new_STR_CD_List[i].Length > 4 && new_STR_NM_List[i].Length > 4) { new_STR_CD_List[i] = new_STR_CD_List[i].Substring(0, 4); new_STR_NM_List[i] = new_STR_NM_List[i].Substring(5); } Console.WriteLine("new_STR_CD_List[i] - " + new_STR_CD_List[i].Trim()); Console.WriteLine("new_STR_NM_List[i] - " + new_STR_NM_List[i].Trim()); } }
DataTable 정보를 엑셀로 저장하기 (0) | 2019.05.30 |
---|---|
.NET 소스 긁어오기 / .NET 소스 긁어오기 Fetch (0) | 2019.05.30 |
C# 다른 프로그램 실행여부 확인하기 (0) | 2019.03.14 |
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |