需要帮助分析文本文件并将其拆分为 C# 中的键值
本文关键字:拆分 键值 帮助 文件 文本 | 更新日期: 2023-09-27 18:31:38
>我正在尝试解析具有特定格式的文本文件并将其拆分为键值,以便稍后可以在外部编辑这些键值,以便将它们构建回另一个文本文件。我尝试这样做的方式对我来说似乎很脏,我正在使用流遍历文件,直到我使用 while 循环到达引号和大括号。它主要工作到我到达一个特定的点,我要么偶然发现一个右大括号,要么跳过一些完全搞砸格式的终止引号。我尝试了很多不同的更改,但它只是无法正常工作。
我尝试解析的文件具有以下格式:
测试解析.txt
"testparse.txt"
{
"TestElement"
{
"value1" "0"
"value2" "stuff"
"value3" "morestuff"
"value4" "25"
"value5" "text"
"value6" "21"
}
"TestElement2"
{
"value1" "0"
"value2" "1"
"value3" "2"
"value4" "3"
"value5" "4"
"value6" "5"
}
}
我有兴趣将名称和值("value1","0")打包到键值中,然后打包到元素中,然后打包到文件中。我对所有内容都使用字符串。
这是我的代码:程序.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.IO;
namespace hudParse
{
class Program
{
static void Main(string[] args)
{
char qt = ''"';
StreamReader sr = new StreamReader("D:/Desktop/testparse.txt");
HudFile file = new HudFile();
string s = "";
Seek(sr,qt);
do
{
s += (char)sr.Read();
}
while(sr.Peek() != qt);
sr.Read();
file.Name = s;
Console.WriteLine("Filename is " + s);
Seek(sr,'{');
//Main loop
do
{
HudElement element = new HudElement();
Seek(sr,qt);
s = "";
do
{
s += (char)sr.Read();
}
while(sr.Peek() != qt);
sr.Read();
element.Name = s;
Console.WriteLine("New Element name is " + s);
Seek(sr,'{');
do
{
s = "";
KeyValue kv = new KeyValue();
Seek(sr,qt);
do
{
s += (char)sr.Read();
}
while(sr.Peek() != qt);
kv.Name = s;
sr.Read();
s = "";
Seek(sr,qt);
do
{
s += (char)sr.Read();
}
while(sr.Peek() != qt);
kv.Value = s;
sr.Read();
element.Add(kv);
Console.WriteLine("KeyValue added to " + element.Name + ": " + kv.ToString());
}
while(sr.Read() != '}');
}
while((sr.Read() != '}') || (sr.Read() != -1));
file.Write();
sr.Close();
Console.WriteLine("Created file " + file.Name);
}
static void Seek(StreamReader sr, char c)
{
while(sr.Read() != c);
}
}
}
键值.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace hudParse
{
class KeyValue
{
string m_Name;
string m_Value;
public string Name
{
get
{
return m_Name;
}
set
{
m_Name = value.Trim();
}
}
public string Value
{
get
{
return m_Value;
}
set
{
m_Value = value.Trim();
}
}
public KeyValue()
{
m_Name = null;
m_Value = null;
}
public KeyValue(string name, string value)
{
m_Name = name;
m_Value = value;
}
public override string ToString()
{
return ''"'+ m_Name + ''"' + ''t' + ''t' + ''"'+ m_Value + ''"';
}
public string GetName()
{
return m_Name;
}
public string GetValue()
{
return m_Value;
}
public bool isNull()
{
if(m_Name == null)
return true;
return false;
}
}
}
我确信有一种更好的方法来完成我错过的所有这些,这样我就不会得到空格、制表符和换行符破坏我的解析。下面是与我的代码关联的其他类。
HudElement.cs哈德文件.cs
您的数据看起来像一个损坏的 JSON,所以我认为解析它的最简单方法是将其转换为有效的 JSON,然后使用一些默认工具,如 JSON.NET。您的数据应如下所示
{
"t1": {
"key1":"value1",
"key2":"value2"
},
"t2": {
"key3":"value3",
"key4":"value4"
}
}
上面的示例适用于Dictionary<string, Dictionary<string, string>>
类型。