如何使用C#streamreader从txt某一行开始读取,且存入2维数组中,且txt中为小数,保留4位小数。
1个回答
展开全部
List<double[]> tempList = new List<double[]>();
int maxLength = 0;
int lineCount = 0;
using (StreamReader reader = new StreamReader("data.txt"))
{
int index = 3;//第3行
for (int i = 1; i < index; i++)
reader.ReadLine();
while (!reader.EndOfStream)
{
string line = reader.ReadLine();
double[] inset = line.Split(' ').Select(s => { double r; double.TryParse(s, out r); return r; }).ToArray();
tempList.Add(inset);
if (maxLength < inset.Length)
maxLength = inset.Length;
lineCount++;
}
}
double[][] array = tempList.ToArray();
double[,] newArray = new double[lineCount, maxLength];
for (int i = 0; i < array.Length; i++)
{
for (int j = 0; j < array[i].Length; j++)
{
newArray[i, j] = array[i][j];
}
}
这是文件格式:
1
2
3.1 3.2 3.3 3.4
4.1 4.2 4.3 4.4
你看看是不是这个效果,不是发一下数据文件格式我再改。
追问
哥们,这个我大概已经解决了,分就给你吧,能否加个QQ,这几天可能有点问题,方便请教,你要分的话,我到时候给你好了,还有500多在,747161601,可以吗
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询