我正在编写一个程序,用于我必须定期进行的一些数据输入。我已经开始测试程序必须要做的一些事情,但我不确定这部分。
我需要做的部分是:
读取.txt数据文件
从每行获取前12个字符
从多行文本框中输入的每行数据中取出前12个字符
逐行比较两个列表
如果多行文本框中的12个字符块中的一个与.txt文件中的一个块匹配,则覆盖整行(总共只有17个字符)
如果多行文本框中的12个字符块之一与.txt文件中的任何块都不匹配,则将整行附加到文件
这就是它所要做的一切。
我会做一个例子:
TXT FILE:
G01:78:08:32 JG05
G08:80:93:10 JG02
G28:58:29:28 JG04
MULTI-LINE TEXT BOX:
G01:78:08:32 JG06
G28:58:29:28 JG03
G32:10:18:14 JG01
G32:18:50:78 JG07
导致TXT文件:
G01:78:08:32 JG06
G08:80:93:10 JG02
G28:58:29:28 JG03
G32:10:18:14 JG01
G32:18:50:78 JG07
你可以看到第1行和第3行被覆盖,第2行被单独留下,因为它与文本框中的任何块都不匹配,第4行和第5行被附加到文件中。
这就是我想要它做的一切。
我该怎么做?
提前致谢
修改
我正在使用的代码是:
private void WriteToFile()
{
// Read all lines from file into memory
System.IO.StreamReader objReader = new System.IO.StreamReader("Jumpgate List.JG");
List<String> fileTextList = new List<String>();
do
{
fileTextList.Add(objReader.ReadLine());
}
while (objReader.Peek() != -1);
objReader.Close();
// Read all lines from the Input textbox into memory
System.IO.StringReader objReaderi = new System.IO.StringReader(txtInput.Text);
List<String> inputTextList = new List<String>();
do
{
inputTextList.Add(objReaderi.ReadLine());
}
while (objReaderi.Peek() != -1);
objReaderi.Close();
for(int i=0;i<fileTextList.Count;i++)
{
for(int j=0;j<inputTextList.Count;j++)
//compare the first 12 characters of each string
if (String.Compare(fileTextList[i], 0, inputTextList[j], 0, 12) == 0) // strings are equal
{
//replace the fileTextList string with the inputTextList string
fileTextList[i] = inputTextList[j];
// now that you have matched you inputTextList line you remember not to append it at the end
inputTextList[j] = String.Empty; // or nothing
}
}
for(int i=0;i<inputTextList.Count;i++)
{
if (!string.IsNullOrEmpty(inputTextList[i])) fileTextList.Add(inputTextList[i]);
}
System.IO.StreamWriter objWriter = new System.IO.StreamWriter("Jumpgate List.JG");
// Overwrite the Jumpgate List.JG file using the updated fileTextList
objWriter.Write(fileTextList);
objWriter.Close();
}
然而,当我打开txt文件时,我得到的是:System.Collections.Generic.List`1 [System.String]
答案 0 :(得分:1)
// this variable maps the timestamps to complete lines
var dict = new Dictionary<string, string>();
// create the map of stamp => line for the original text file
string fileLine = file.ReadLine();
string fileStamp = fileLine.Substring(0, 12);
dict[fileStamp] = fileLine;
// now update the map with results from the text input. This will overwrite text
// strings that already exist in the file
foreach (string inputLine in textInputString.Split('\n'))
{
string inputStamp = inputLine.Substring(0, 12);
dict[inputStamp] = inputLine;
}
// write out the new file with the updated lines
foreach (string line in dict.Values)
{
outputFile.WriteLine(line);
}
答案 1 :(得分:1)
我不打算编写完整的代码,但它会是这样的:
免责声明:我没有使用代码编辑器来尝试代码,只是在这里写下来,希望你能得到这个想法并填写缺失的部分:)
1)获取列表中文件中的所有行。像这样的东西
StreamReader rd = new StreamReader("sadasd");
List<String> llist = new List<String>();
do
{
llist.Add(rd.ReadLine());
} while (rd.Peek() != -1);
2)获取多行文本框中的所有行(该过程应类似于上面的行):multiTextList
3)现在您可以比较迭代它们的2个列表的内容
for(int i=0;i<fileTextList.Count;i++)
{
for(int j=0;j<multiTextList.Count;j++)
//compare the first 12 characters of each string
if String.Compare(fileTextList[i], 0, multiTextList[j], 0, 12) == 0 // strings are equal
{
//replace the initial line with whatever you want
fileTextList[i] = //whatever
// now that you have matched you multiTextList line you remember not to append it at the end
multiTextList[j] = String.empty // or nothing
}
}
4)最后,您将在fileTextList中获得初始行,并在必要时进行修改 在multiTextList中,您将只有不匹配的行,因此我们将它们添加到初始文件行
for(int i=0;i<multiTextList.Count;i++)
{
if !string.isnullorempty(multitextlist[i]) fileTextList.add(multitextlist[i])
}
5)现在在fileTextList中,您拥有了所需的所有行,因此您可以在文件中逐个打印它们并获得结果
StringBuilder lSb = new StringBuilder();
for (int i = 0; i < fileTextList.Count; i++)
{
lSb.AppendLine(fileTextList[i]);
}
File.WriteAllText(@"C:/test2.txt",lSb.ToString());
在C:/test2.txt
中你应该得到结果。
希望这有帮助!
答案 2 :(得分:0)
如果文件很大,将整个文件加载到字典中以更新文本字段中的少量行可能过多。
在伪代码中我可能会:
Create a list of booleans or other structure to track if a line was matched.
open the file in read/write mode.
For each line in file
{
for each unmatched line in text field
{
If stamps match
Update file
record that it was matched
}
}
for each unmatched line in text field
{
append to file
}
如果线条是固定宽度,您可以通过仅读取图章而不是整行来优化。如果它们匹配你的文件指针是在正确的位置开始写,如果不是你移动到下一行。