我能够从我的文件中读取值,我只是无法弄清楚如何写入特定的名称。
我开始尝试的是
public void writeCharacter()
{
Form1 f1 = new Form1();
string homepath = Environment.GetEnvironmentVariable("homepath");
try
{
using (FileStream fs = File.Open(homepath + @"\Documents\DnD5e\charactersheet.json", FileMode.OpenOrCreate))
using (StreamWriter sw = new StreamWriter(fs))
using (JsonWriter jw = new JsonTextWriter(sw))
{
jw.Formatting = Formatting.Indented;
JsonSerializer jserialize = new JsonSerializer();
foreach (Control ctrl in f1.Controls)
{
if (ctrl.Tag == "CHANGED")
{
jserialize.Serialize(jw, ctrl.Text);
}
}
}
}
catch (Exception e)
{
MessageBox.Show(e.Source + "\n\n" + e.Message);
}
}
唯一的问题是我无法弄清楚序列化程序的写入位置,我无法弄清楚如何指定要写入的名称。
我想从文本框中获取输入(当文本被更改时,它们被赋予标签“CHANGED”)并且根据数据来自哪个文本框我希望它写入该特定名称。任何帮助都非常感谢!!
我的代码全部托管on git
答案 0 :(得分:0)
您已经拥有JsonWriter
,您不需要分配JsonSerializer
。 JsonWriter
是用于写出JSON的低级机制:
using (FileStream fs = File.Open(homepath + @"\Documents\DnD5e\charactersheet.json",
FileMode.OpenOrCreate))
using (StreamWriter sw = new StreamWriter(fs))
using (JsonWriter jw = new JsonTextWriter(sw))
{
jw.Formatting = Formatting.Indented;
foreach (Control ctrl in f1.Controls)
{
if (ctrl.Tag == "CHANGED")
{
jw.WritePropertyName(ctrl.Name);
jw.WriteValue(ctrl.Text);
}
}
}
JsonWriter
将通过您的StreamWriter
写入文件。