txt文件中,每个字符串以回车分隔开。
现在定义了一个字符串数组string[] str
如何将txt文件中的字符串全部读取到字符串数组中。
求解
先要获取TXT的行数,这个你自己弄吧。下面代码是把每个字符串读入到string[] aa中;
FileStream fs = new FileStream("d:\\1.txt", FileMode.Open);
StreamReader m_streamReader = new StreamReader(fs);
m_streamReader.BaseStream.Seek(0, SeekOrigin.Begin);
string strLine = m_streamReader.ReadLine();
string[] aa=new string[10];
int shu = 0;
do
{
string[] split = strLine.Split('\n');
aa[shu] = strLine;
shu++;
strLine = m_streamReader.ReadLine();
}
while (strLine != null);
m_streamReader.Close();
m_streamReader.Dispose();
fs.Close();
fs.Dispose();
MessageBox.Show(aa[3].ToString());
本回答被提问者采纳C#中如何将txt文件中的内容读取到字符串数组
先要获取TXT的行数,这个你自己弄吧。下面代码是把每个字符串读入到string[] aa中;FileStream fs = new FileStream("d:\\\\1.txt", FileMode.Open);StreamReader m_streamReader = new StreamReader(fs);m_streamReader.BaseStream.Seek(0, SeekOrigin.Begin);string strLine = m_streamReader.Rea...
C#里面如何将.txt文件中的数据读入,存入数组
System.IO.TextReader reader = new System.IO.StreamReader(filePath);使用 reader.ReadLine()或reader.ReadToEnd()获取字符串,按照你的需要存入数组即可
C#读取资源文件中的txt
C#中则是:项目命名空间.资源文件所在文件夹名.资源文件名 例如:istr = assm.GetManifestResourceStream("项目命名空间.资源文件所在文件夹名.资源文件名");读取资源文件注意: 资源文件一定要是 嵌入的资源; 并且资源文件名要带扩展名的Assembly assm = Assembly.GetExecutingAssembly();Stream istr = assm.GetManifest...
C#如何获取txt文本文档中指定的字符串并赋给数组,例如:获取文本文档...
string S;string[] SplitArray;SR = File.OpenText("D:\\\\xx.txt"); \/\/字符串所在文件 S = SR.ReadLine(); \/\/读一行 if(S != null){ SplitArray = S.Split('='); \/\/把字符串分成字符串数组,abcd,1234等等。\/\/...这里写你处理字符串的代码 \/\/...} SR.Close(); \/\/关闭文件 ...
C#读取txt文件,一行行的读取其内容,截取特定字符放数组里。
这个问题其实比较简单,如果你读取的文本文件很大的话,我建议用文件流的方式读取,如果小的话可以不用,具体实现是:path="你的文本文件的路径";\/\/定义一个全局变量的数组,用于接收一会儿切割的字符数据 string[] strResult=null;\/\/读取每一行数据,存放到数组中 string[] strTxt=File.ReadAllLines("...
C#中如何把Txt文件读取到一个String数组里面谢谢了,大神帮忙啊_百度知 ...
若干个数字 解决方法: string[]strings = File.ReadAllLines(你的文本文件绝对路径); int sum = 0; foreach(string num in strings) { sum+=Convert.ToInt32(num); } \/\/存盘到C:\\result.txt下 File.WriteAllText("C:\\\\result.txt",sum.ToString()); 3)假设你的文本文件如下: China ...
C#读取文本中的数据存放到数组如何实现?
Default); \/\/ 路径写自己的 string text = sr.ReadToEnd();\/\/读文件 sr.Close();string[] data = text.Split(new char[] { ',' });\/\/放入数组 int[] idata = new int[data.Length];for (int i = 0; i < idata.Length; i++){ MessageBox.Show(data[i].ToString());} ...
c#怎么一行一行的读取TXT文本 每读取一行内容 就把这一行的内容写入一个...
string line = string.Empty;List<string> lines = new List<string>();using (StreamReader reader = new StreamReader(@"text1.txt")){ line = reader.ReadLine();while (line !=""&&line !=null){ lines.Add(line);Console.WriteLine(line);line = reader.ReadLine();} } ...
C#语言如何把txt的文件的每一行读出来(一行中有两个数,格式:2,3)把...
\/\/创建一个二维数组,C#中List与正常的数组使用方法是相同的 List<List<int>> result = new List<List<int>>();\/\/初始化一个StreamReader对象用于输入流的读取,构造函数传入一个文件流的对象 StreamReader sr = new StreamReader(new FileStream("tmp.txt",FileMode.Open));\/\/循环读取一行字符串 ...
C#,如何一行一行的读取TXT文本 每读取一行内容 就把这一行的内容写入一...
string.Empty;List<string> lines = new List<string>();using (StreamReader reader = new StreamReader(@"text1.txt")){ line = reader.ReadLine();while (line !=""&&line !=null){ lines.Add(line);Console.WriteLine(line);line = reader.ReadLine();} } \/\/通过C#中的泛型来记录 ...