[XML使用C#编辑到文件

问题描述 投票:0回答:1

我正在使用WPF应用程序,并且我有一个简单的XML文件,正在使用'XmlDocument'进行解析,并且在readinh部分工作正常。我希望用户能够添加,编辑或删除任何节点并将这些更改保存到文件中。

我尝试使用'XElement',但它似乎更改了实例本身而不是文件。

我的XML文件看起来像这样:

<Configuration>
    <A_0.04_5>
        <ML407Configuration>
            <AM_Amp>10</AM_Amp>
            <AMRJ_Amp>10</AMRJ_Amp>
            <FM_Freq>20</FM_Freq>
            <FM_Phase_Shift>20</FM_Phase_Shift>
        </ML407Configuration>
        <BertConfiguration>
            <BERT_LR>25.78125</BERT_LR>
            <BERT_PRBS>7</BERT_PRBS>
            <BERT_Scaling>1000</BERT_Scaling>
        </BertConfiguration>
    </A_0.04_5>
    <B_1.333_0.15>
        <ML407Configuration>
            <AM_Amp>10</AM_Amp>
            <AMRJ_Amp>10</AMRJ_Amp>
            <FM_Freq>20</FM_Freq>
            <FM_Phase_Shift>20</FM_Phase_Shift>
        </ML407Configuration>
        <BertConfiguration>
            <BERT_LR>25.78125</BERT_LR>
            <BERT_PRBS>7</BERT_PRBS>
        </BertConfiguration>
    </B_1.333_0.15>

    <C_4_0.05>
        <ML407Configuration>
            <BUJ_LR>25</BUJ_LR>
            <BUJ_Pattern>7</BUJ_Pattern>
            <PM_BUJ_Amp>7</PM_BUJ_Amp>
            <BUJ_Amp>80</BUJ_Amp>
            </ML407Configuration>
        <BertConfiguration>
            <BERT_LR>25.78125</BERT_LR>
            <BERT_PRBS>7</BERT_PRBS>
        </BertConfiguration>
    </C_4_0.05> 
</Configuration>

我尝试的是以下内容:

string filePath = Environment.GetFolderPath(Environment.SpecialFolder.Desktop)+"/Configuration.xml";
XElement xml = XElement.Load(filePath);
// This seems to remove the node from xml instance and not from the file
// Should I save the file again or is there another way to do it
// Same applies for add and edit
xml.Elements("C_4_0.05").Remove();

我看过很多类似的问题,但我不知道它们是否直接更改为文件

c# wpf xelement
1个回答
0
投票

XElement.Load将XML结构从文件加载到内存中。您对该结构所做的任何更改也会在内存中完成。如果要将这些更改写回到文件(技术上称为XElement.Load),则需要调用serialization

© www.soinside.com 2019 - 2024. All rights reserved.