C#中如何将txt文件中的内容读取到字符串数组

txt文件中,每个字符串以回车分隔开。
现在定义了一个字符串数组string[] str
如何将txt文件中的字符串全部读取到字符串数组中。
求解

第1个回答  2011-09-25

先要获取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());

本回答被提问者采纳
第2个回答  2011-09-25

Split函数
描述

返回一个下标从零开始的一维数组,它包含指定数目的子字符串。

语法

Split(expression[, delimiter[, limit[, compare]]])

Split函数语法有如下命名参数:

部分 描述
expression 必需的。包含子字符串和分隔符的字符串表达式 。如果expression是一个长度为零的字符串(""),Split则返回一个空数组,即没有元素和数据的数组。
delimiter 可选的。用于标识子字符串边界的字符串字符。如果忽略,则使用空格字符(" ")作为分隔符。如果delimiter是一个长度为零的字符串,则返回的数组仅包含一个元素,即完整的 expression字符串。
limit 可选的。要返回的子字符串数,–1表示返回所有的子字符串。
compare 可选的。数字值,表示判别子字符串时使用的比较方式。关于其值,请参阅“设置值”部分。

设置值

compare参数的设置值如下:

常数 值 描述
vbUseCompareOption –1 用Option Compare语句中的设置值执行比较。
vbBinaryCompare 0 执行二进制比较。
vbTextCompare 1 执行文字比较。
vbDatabaseCompare 2 仅用于Microsoft Access。基于您的数据库的信息执行比较。
第3个回答  2011-09-24
string[] str= File.ReadAllLines(@"路径+文件名.txt", System.Text.Encoding.Default);
第4个回答  2011-09-24
引用IO,然后根据 File 来实现,其他慢慢研究。只是引导。

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#中的泛型来记录 ...

相似回答