1樓:匿名使用者
static void txt(string src));//這樣就可以把每行放到陣列中的一項裡int idata = new int[data.length];
for (int i = 0; i < idata.length; i++)//如果每行是乙個數字,這段**可以把字串轉換為整數}
如何用c#讀取txt檔案裡的資料,並且儲存在byte陣列裡
2樓:放星星的
不知道幹嘛用的
using system;
using system.collections.generic;
using system.linq;
using system.text;
using system.collections;
using system.io;
namespace dududu
, stringsplitoptions.removeemptyentries);
for (int i = 0; i < strs.length; i+=3)
if ((i + 2) < strs.length)
}byte bytes1 = encoding.default.getbytes(str1);
byte bytes2 = encoding.default.getbytes(str2);
byte bytes3 = encoding.default.getbytes(str3);
// console.readkey();}}}
c#如何把乙個txt文件的內容存入到陣列中
3樓:匿名使用者
你這個txt文件中的資料是什麼樣的資料,這點很重要。
using system.io;
string datas = null;
//讀取資料
using (streamreader reader = new streamreader(@"d:\text.txt"))
datas[0] = "567";
}using (streamwriter writer = new streamwriter(@"d:\text.txt"))
else}}
4樓:匿名使用者
直接給函式給你吧,過程你自己研究
using system;
using system.collections.generic;
using system.text;
using system.io;
////// 開啟乙個txt檔案並將每一行資料讀取到list string 鍊錶當中,因記憶體限制,只能讀取 /// 300mb左右的檔案(當前安裝記憶體的百分之60記憶體)
////// 要讀取的txt檔案
/// 已讀取資料的list string 鍊錶public listgetfiledatatoliststring(string sfilepath)
sr.close();
fs.close();
return ls_string_temp;}
5樓:匿名使用者
如果存byte 那麼你將記錄編碼型別和讀出的陣列,如果是字串型別你將字串轉成char存如就是
c語言如何實現從文字檔案裡讀取數字
可以通過fscanf,從檔案中依次讀取資料。當fscanf返回eof時,表示讀到檔案結尾,這時停止讀取即可。以檔案中儲存的為空格分隔的整型字元為例,可以寫作 從開啟的檔案指標fp指向的檔案讀資料,每次讀乙個整型,直至檔案結尾。c語言是一門通用計算機程式語言,應用廣泛。c語言的設計目標是提供一種能以簡...
C 如何逐行讀取檔案,並將讀取出來的資料進行運算匯入
會飛的小兔子 intmain inta 16 file fp fopen aa.txt r inti 0 while feof fp fscanf fp,d a i i return0 擴充套件資料在python一次性讀取資料 file novel.txt withopen file asfile ...
C語言程式設計如何實現“計算圓的面積”
新學it課堂 案例 輸入圓的半徑,計算圓的面積。用c語言怎麼編寫求圓的周長和麵積的程式? include define pi 3.1415926 void main 編寫程式求圓的面積並輸出,半徑可以利用輸入函式scanf 進行輸入,圓周率利用符號常量。用c語言? 小黑哎啊 include defi...