我正在尝试将 4 组 15 个 txt 文件写入 4 个大 txt 文件,以便更容易导入另一个应用程序。
这是我的代码:
using System;
using System.IO;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace AggregateMultipleFiles
{
class AggMultiFilestoOneFile
{/*This program can reduce multiple input files and grouping results into one file for easier app loading.*/
static void Main(string[] args)
{
TextWriter writer = new StreamWriter("G:/user/data/yr2009/fy09_filtered.txt");
int linelen =495;
char[] buf = new char[linelen];
int line_num = 1;
for (int i = 1; i <= 15; i++)
{
TextReader reader = File.OpenText("G:/user/data/yr2009/fy09_filtered"+i+".txt");
while (true)
{
int nin = reader.Read(buf, 0, buf.Length);
if (nin == 0 )
{
Console.WriteLine("File ended");
break;
}
writer.Write(new String(buf));
line_num++;
}
reader.Close();
}
Console.WriteLine("done");
Console.WriteLine(DateTime.Now);
Console.ReadLine();
writer.Close();
}
}
}
我的问题出在调用文件末尾的某个地方。它没有完成文件的最后一行的写入,然后在前一个文件的最后一行的中间开始写入下一个文件的第一行。
这会丢弃它导入的应用程序中的所有列和数据。
有人建议我可能需要在 15 个文件的每一行的末尾用回车符和回车符来填充,\r\n。
- 为什么我的东西不起作用?
- 填充会起作用吗?我该怎么写?
谢谢!