求大神,帮忙C#编程实现txt文件的读取,并将数据保存在一个数组中。最好有搜索的功能
3个回答
展开全部
using System.IO;
FileStream stream=new FileStream("文件路径",FileMode.Open);
StreamReader reader=new StreamReaer(stream);
string line=string.Empty;
int count=0;
while ((line = reader.ReadLine()) != null) {
reader.ReadLine();
count++;
}
关闭流
FileStream stream=new FileStream("文件路径",FileMode.Open);
StreamReader reader=new StreamReaer(stream);
string line=string.Empty;
string[] s=new string[count];//以刚才读取的行数做为数组长度,你学数组之后就不用这么麻烦了
int i=0;
while (i<=count) {
s[i]=reader.ReadLine();
i++;
}
最后把流关闭
FileStream stream=new FileStream("文件路径",FileMode.Open);
StreamReader reader=new StreamReaer(stream);
string line=string.Empty;
int count=0;
while ((line = reader.ReadLine()) != null) {
reader.ReadLine();
count++;
}
关闭流
FileStream stream=new FileStream("文件路径",FileMode.Open);
StreamReader reader=new StreamReaer(stream);
string line=string.Empty;
string[] s=new string[count];//以刚才读取的行数做为数组长度,你学数组之后就不用这么麻烦了
int i=0;
while (i<=count) {
s[i]=reader.ReadLine();
i++;
}
最后把流关闭
展开全部
直接使用
File.ReadAllBytes("文件地址")
返回值就是字节数组~byte[](一般称为流)
不懂你想保存成神马数组,搜索功能也不懂你问的是神马意思~
希望对您有帮助~
By Billskate
File.ReadAllBytes("文件地址")
返回值就是字节数组~byte[](一般称为流)
不懂你想保存成神马数组,搜索功能也不懂你问的是神马意思~
希望对您有帮助~
By Billskate
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
ForExmple:
string str = File.ReadAllText("D:\\test.txt");
string[] Strs = str.Split('|'); // '|' is the Split key
string str = File.ReadAllText("D:\\test.txt");
string[] Strs = str.Split('|'); // '|' is the Split key
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询