使用streamwriter保存xml文件

时间:2014-08-18 08:46:13

标签: c# xml

我正在尝试找到一种方法将数据保存回编码为“iso-8859-7”的xml文件。

首先使用

加载xml
    public XmlDocument LoadDocument(String x)
    {
        XmlDocument document = new XmlDocument();
        StreamReader stream = new StreamReader(xml, Encoding.GetEncoding("iso-8859-7"));
        document.Load(stream);
        return (document);
    }

在表单控件中加载属性,然后单击“保存”按钮

    private void savebtn_Click(object sender, EventArgs e)
    {
        XmlNodeList attributes = commonMethods.LoadDocument(xml).DocumentElement.SelectNodes("//Class[@Name='" + classname + "']/Property[@Id='" + id + "']/attribute::*");
        for (int x = 0; x < attributes.Count; )
        {
            foreach (Control ctr in table1.Controls)
            {
                if (ctr is TextBox)
                {
                    if (ctr.Text == attributes[x].Value.ToString()) { x++; }
                    else
                    {
                        attributes[x].Value = ctr.Text; commonMethods.SaveDocument(xml);
                        x++;
                    }
                }
                else if (ctr is ComboBox)
                {
                    if (((ComboBox)ctr).Text == attributes[x].Value) { x++; }
                    else
                    {
                        attributes[x].Value = ((ComboBox)ctr).Text; commonMethods.SaveDocument(xml);
                        x++;
                    }
                }
            }
        }
    }

它将更改保存回xml文件。我以前不使用像xmldoc.Save("sample.xml)这样的xmlwriter来保存它,但由于文件中的一些字符,我不得不使用不同的方法,如。

    public XmlDocument SaveDocument(String x)
    {
        XmlDocument document = new XmlDocument();
        StreamWriter stream = new StreamWriter(x,false,Encoding.GetEncoding("iso-8859-7"));
        document.Save(xml);
        return (document);
    }

问题是当我编译它时说“xml被另一个进程使用”并且它失败了。

System.IO.IOException

2 个答案:

答案 0 :(得分:1)

您遇到此异常,因为StreamReader仍在打开该文件,该文件正在等待完成(垃圾回收)。 您应该始终处理您的流(和读取器/写入器)以尽快释放文件句柄。

public XmlDocument LoadDocument(String path)
{
    XmlDocument document = new XmlDocument();
    using (StreamReader stream = new StreamReader(path, Encoding.GetEncoding("iso-8859-7")))
    {
        document.Load(stream);

    }
    return (document);
}


public XmlDocument SaveDocument(XmlDocument document, String path)
{
    using (StreamWriter stream = new StreamWriter(path,false,Encoding.GetEncoding("iso-8859-7")))
    {
        document.Save(stream);
    }
    return (document);
}


private void savebtn_Click(object sender, EventArgs e)
{
    var doc = commonMethods.LoadDocument(xml);
    XmlNodeList attributes = doc.DocumentElement.SelectNodes("//Class[@Name='" + classname + "']/Property[@Id='" + id + "']/attribute::*");
    for (int x = 0; x < attributes.Count; )
    {
        foreach (Control ctr in table1.Controls)
        {
            if (ctr is TextBox)
            {
                if (ctr.Text == attributes[x].Value.ToString()) { x++; }
                else
                {
                    attributes[x].Value = ctr.Text; commonMethods.SaveDocument(doc, xml);
                    x++;
                }
            }
            else if (ctr is ComboBox)
            {
                if (((ComboBox)ctr).Text == attributes[x].Value) { x++; }
                else
                {
                    attributes[x].Value = ((ComboBox)ctr).Text; commonMethods.SaveDocument(doc, xml);
                    x++;
                }
            }
        }
    }
}

答案 1 :(得分:0)

加载文档后,您没有处理 StreamReader对象

添加using声明:

public XmlDocument LoadDocument(String x)
    {
        XmlDocument document = new XmlDocument();
        using (StreamReader stream = new StreamReader(xml, Encoding.GetEncoding("iso-8859-7")))
      {
        document.Load(stream);

      }
      return (document);
    }

参考:http://msdn.microsoft.com/en-us/library/system.io.streamreader(v=vs.110).aspx