读取文件,检查列的正确性,写入文件 C#
Read file, check correctness of column, write file C#
我需要检查某些数据列以确保没有尾随空白 space。起初以为我觉得这很容易,但是在尝试实现目标后我卡住了。
我知道我需要检查的列中应该有6位数字。如果少了我会拒绝,如果多了我会trim空白spaces。对整个文件执行此操作后,我想使用相同的分隔符将其写回文件。
这是我的尝试:
除了写入文件外,一切似乎都在正常工作。
if (File.Exists(filename))
{
using (StreamReader sr = new StreamReader(filename))
{
string lines = sr.ReadLine();
string[] delimit = lines.Split('|');
while (delimit[count] != "COLUMN_DATA_TO_CHANGE")
{
count++;
}
string[] allLines = File.ReadAllLines(@filename);
foreach(string nextLine in allLines.Skip(1)){
string[] tempLine = nextLine.Split('|');
if (tempLine[count].Length == 6)
{
checkColumn(tempLine);
writeFile(tempLine);
}
else if (tempLine[count].Length > 6)
{
tempLine[count] = tempLine[count].Trim();
checkColumn(tempLine);
}
else
{
throw new Exception("Not enough numbers");
}
}
}
}
}
public static void checkColumn(string[] str)
{
for (int i = 0; i < str[count].Length; i++)
{
char[] c = str[count].ToCharArray();
if (!Char.IsDigit(c[i]))
{
throw new Exception("A non-digit is contained in data");
}
}
}
public static void writeFile(string[] str)
{
string temp;
using (StreamWriter sw = new StreamWriter(filename+ "_tmp", false))
{
StringBuilder builder = new StringBuilder();
bool firstColumn = true;
foreach (string value in str)
{
if (!firstColumn)
{
builder.Append('|');
}
if (value.IndexOfAny(new char[] { '"', ',' }) != -1)
{
builder.AppendFormat("\"{0}\"", value.Replace("\"", "\"\""));
}
else
{
builder.Append(value);
}
firstColumn = false;
}
temp = builder.ToString();
sw.WriteLine(temp);
}
}
如果有更好的方法来解决这个问题,我很想听听。感谢您查看问题。
编辑:
文件结构-
国家|名字|姓| uniqueID(我正在检查的列)|地址|等等
美国|John|Doe|123456 |5 大街|
注意 6
后面的空格 space
写入文件的主要问题是您为每个输出行打开输出文件,并且使用 append=false 打开它,这导致文件每次都被覆盖。一种更好的方法是打开输出文件一次(可能在验证输入文件头之后)。
另一个问题是您正在使用 .ReadAllLines() 第二次打开输入文件。最好在循环中一次一行地读取现有文件。
考虑这个修改:
using (StreamWriter sw = new StreamWriter(filename+ "_tmp", false))
{
string nextLine;
while ((nextLine = sr.ReadLine()) != null)
{
string[] tempLine = nextLine.Split('|');
...
writeFile(sw, tempLine);
var oldLines = File.ReadAllLines(filePath):
var newLines = oldLines.Select(FixLine).ToArray();
File.WriteAllLines(filePath, newLines);
string FixLine(string oldLine)
{
string fixedLine = ....
return fixedLine;
}
我需要检查某些数据列以确保没有尾随空白 space。起初以为我觉得这很容易,但是在尝试实现目标后我卡住了。
我知道我需要检查的列中应该有6位数字。如果少了我会拒绝,如果多了我会trim空白spaces。对整个文件执行此操作后,我想使用相同的分隔符将其写回文件。
这是我的尝试:
除了写入文件外,一切似乎都在正常工作。
if (File.Exists(filename))
{
using (StreamReader sr = new StreamReader(filename))
{
string lines = sr.ReadLine();
string[] delimit = lines.Split('|');
while (delimit[count] != "COLUMN_DATA_TO_CHANGE")
{
count++;
}
string[] allLines = File.ReadAllLines(@filename);
foreach(string nextLine in allLines.Skip(1)){
string[] tempLine = nextLine.Split('|');
if (tempLine[count].Length == 6)
{
checkColumn(tempLine);
writeFile(tempLine);
}
else if (tempLine[count].Length > 6)
{
tempLine[count] = tempLine[count].Trim();
checkColumn(tempLine);
}
else
{
throw new Exception("Not enough numbers");
}
}
}
}
}
public static void checkColumn(string[] str)
{
for (int i = 0; i < str[count].Length; i++)
{
char[] c = str[count].ToCharArray();
if (!Char.IsDigit(c[i]))
{
throw new Exception("A non-digit is contained in data");
}
}
}
public static void writeFile(string[] str)
{
string temp;
using (StreamWriter sw = new StreamWriter(filename+ "_tmp", false))
{
StringBuilder builder = new StringBuilder();
bool firstColumn = true;
foreach (string value in str)
{
if (!firstColumn)
{
builder.Append('|');
}
if (value.IndexOfAny(new char[] { '"', ',' }) != -1)
{
builder.AppendFormat("\"{0}\"", value.Replace("\"", "\"\""));
}
else
{
builder.Append(value);
}
firstColumn = false;
}
temp = builder.ToString();
sw.WriteLine(temp);
}
}
如果有更好的方法来解决这个问题,我很想听听。感谢您查看问题。
编辑: 文件结构-
国家|名字|姓| uniqueID(我正在检查的列)|地址|等等
美国|John|Doe|123456 |5 大街|
注意 6
后面的空格 space写入文件的主要问题是您为每个输出行打开输出文件,并且使用 append=false 打开它,这导致文件每次都被覆盖。一种更好的方法是打开输出文件一次(可能在验证输入文件头之后)。
另一个问题是您正在使用 .ReadAllLines() 第二次打开输入文件。最好在循环中一次一行地读取现有文件。
考虑这个修改:
using (StreamWriter sw = new StreamWriter(filename+ "_tmp", false))
{
string nextLine;
while ((nextLine = sr.ReadLine()) != null)
{
string[] tempLine = nextLine.Split('|');
...
writeFile(sw, tempLine);
var oldLines = File.ReadAllLines(filePath):
var newLines = oldLines.Select(FixLine).ToArray();
File.WriteAllLines(filePath, newLines);
string FixLine(string oldLine)
{
string fixedLine = ....
return fixedLine;
}