1樓:匿名使用者
foreach(string str in system.io.file.readalllines("d:\123.txt", encoding.default)
c#,如何一行一行的讀取txt文字 每讀取一行內容 就把這一行的內容寫入一個字串陣列
2樓:匿名使用者
插!!答得好?答得好,你壓根就看不懂,有啥用?
自個慢慢找資料解決吧
3樓:匿名使用者
string line = string.empty;
listlines = new list();
using (streamreader reader = new streamreader(@"text1.txt"))
}//通過c#中的泛型來記錄
c#怎麼用filestream一行一行的讀取文字
c#怎麼從文字文件裡讀取一行資料?
4樓:匿名使用者
system.io.streamreader s = file.opentext("test.txt"); //要開啟bai的文字
檔案,如果du跟程式不zhi在一個目錄dao,要包括路徑內string read = s.readline();//讀取一行,存放在變容
量read中
c#中怎麼讀取txt檔案某一行的內容
5樓:dw設計高手
先匯入名稱空間:using system.io;
string line= file.readalllines(@"d:\1.txt");
//遍歷第10行
console.writeline(line[9]);
//遍歷所有行
for (int i = 0; i < line.length; i++)
6樓:匿名使用者
把這個txt檔案改成ini檔案,然後用win api讀取,可以定義節點還有項,很方便
7樓:匿名使用者
像這種情況 用xml代替txt要好些吧
c#如何讀取txt指定行的內容?
8樓:尚學堂
方法1string lines = file.readalllines(filepath + "\\" + filenames[i]);
然後就可以通過指定lines的下標來處理指定的行方法2streamreader objreader = new streamreader("c:\\test.txt");
string sline="";
string result=string.empty;
int i=0;
while ((sline = objreader.readline())!= null)
}objreader.close();
c#迴圈讀取txt文字帶有指定字串的行
9樓:匿名使用者
引入名稱空間using system.io;
streamreader read = new streamreader(path);//你的txt路徑
string str=null;
while ((str = read.readline()) != null) ;
}read.close();
10樓:匿名使用者
using system.text;
using system.io;
streamreader objreader = new streamreader("c:\\temp.txt");
string sline = "";
arraylist linelist = new arraylist();
while (sline != null)objreader.close();
c # 文字檔案如何一行一行讀取
11樓:匿名使用者
1.建立一個streamreader,它有readline的方法
2.或者使用file.readalllines()方法一次性全部讀取,然後怎麼整它們都是隨心所欲了。
12樓:
streamreader sr = new streamreader(@"f:\a\test.txt");
string str="";
while (true)
}sr.close();
13樓:
readline()方法就是一行一行的讀取的
14樓:匿名使用者
當獲取所有內容後迴圈獲取一行
while ( reader.read() )
c#如何讀取txt檔案中每一行每一個資料
15樓:匿名使用者
var file = file.open("d:\\tx.txt", filemode.open);
listtxt = new list();
using (var stream = new streamreader(file))
}var array = new string[10,10];
var line = 0;
txt.foreach(t => );
line++;
});file.close();
16樓:匿名使用者
while迴圈,readline讀取,spilt根據『,』分成陣列。
C 怎麼讀取檔案指定的一行或計算出某一行的偏移量。謝謝大家了,這個問題我真被難住了
假如是不規則文字 每行所佔空間不同 那麼在不增加其他索引的情況下,只能根據讀取到的換行個數確定行數。這樣效率勢必低下。假如對儲存空間的節約要求不高,可以將詞庫檔案格式化 每行所佔空間相同 這樣seek起來會快很多。c 讀檔案如何定位到某一行?c 不支援直接定位到某一行。不過可以通過先定位到檔案開始,...
C語言如何讀取一行資料,以空格分開
會飛的小兔子 可以使用strtok函式做分割單詞。include voidmain chars 192.168.0.26 char delim char p printf s strtok s,delim while p strtok null,delim printf s p printf n 擴...
運用C 如何讀取一行字串的指定字元
泡影果果 從檔案中讀取資料,一行一行的讀取,用getline include fstream in cstring strfilename e 測試 a.txt 路徑是雙斜槓 in.open strfilename,ios in ios base in while in.eof 如果沒有讀到檔案結尾...