xmlDocument 已被另一个进程使用

Posted

技术标签:

【中文标题】xmlDocument 已被另一个进程使用【英文标题】:xmlDocument is already used by another process 【发布时间】:2020-10-24 22:07:29 【问题描述】:

我创建了一个从 XML 文件读取和写入值的程序。当我尝试使用 xmlDoc.Save(path); 保存 XML 时它会抛出异常,因为该文件已被另一个进程使用。

读取方法:

private void ReadXml()
        
            //instantiate the xmlDocument
            xmlDoc = new XmlDocument();
            //declare an XmlNodeList
            XmlNodeList xmlNode;

            //create a FileStream to read the file
            FileStream fs = new FileStream(path, FileMode.Open, FileAccess.Read);
            //load the file
            xmlDoc.Load(fs);
            //get all the nodes from the file
            xmlNode = xmlDoc.GetElementsByTagName("Drop");

            //read all values frome the nodes and save it into variables
            for (int i = 0; i <= xmlNode.Count - 1; i++)
            
                string name= xmlNode[i].ChildNodes.Item(0).InnerText.Trim();
                int DefaultMin= Convert.ToInt32(xmlNode[i].ChildNodes.Item(1).InnerText.Trim());
                int DefaultMax = Convert.ToInt32(xmlNode[i].ChildNodes.Item(2).InnerText.Trim());
                int min = Convert.ToInt32(xmlNode[i].ChildNodes.Item(3).InnerText.Trim());
                int max= Convert.ToInt32(xmlNode[i].ChildNodes.Item(4).InnerText.Trim());
                int line= Convert.ToInt32(xmlNode[i].ChildNodes.Item(5).InnerText.Trim());
                string lineToChange = xmlNode[i].ChildNodes.Item(6).InnerText;
                string filePath = xmlNode[i].ChildNodes.Item(7).InnerText.Trim();

                //create the DropItem object
                DropItem drop = new DropItem(name, DefaultMin, DefaultMax, line, lineToChange, installPath+filePath);
                drop.MinValue = min;
                drop.MaxValue = max;

                //add the object to the list
                drops.Add(drop);
            
        

写法:

public void WriteXml()
        
            //declare a xmlNodeList
            XmlNodeList xmlNode;
            //create a FileStream to read the file
            FileStream fs = new FileStream(path, FileMode.Open, FileAccess.Read);
            //load the file
            xmlDoc.Load(fs);
            //get all the nodes from the file
            xmlNode = xmlDoc.GetElementsByTagName("Drop");

            //write the values in the xml
            for (int i = 0; i <= drops.Count - 1; i++)
                        
                xmlNode[i].ChildNodes.Item(3).InnerText=drops[i].MinValue.ToString();
                xmlNode[i].ChildNodes.Item(4).InnerText = drops[i].MaxValue.ToString();   
            

            //save the document
            xmlDoc.Save(path);
        

我想我必须在保存之前关闭 read 方法中的 xmlDoc。

【问题讨论】:

尝试在每个一次性对象周围添加 using。它还会安全地关闭文件蒸汽。 【参考方案1】:

您没有关闭流, 使用Using 语句来处理和关闭FileStream

using (FileStream fs = new FileStream(path, FileMode.Open, FileAccess.Read))

    //load the file
    xmlDoc.Load(fs);
    //get all the nodes from the file
    xmlNode = xmlDoc.GetElementsByTagName("Drop");

【讨论】:

【参考方案2】:

尝试将using 添加到File Stream,这将有助于确保File Stream 中的文件未被使用。

public void WriteXml()

    //declare a xmlNodeList
    XmlNodeList xmlNode;

    //create a FileStream to read the file
    using (FileStream fs = new FileStream(path, FileMode.Open, FileAccess.Read))
    
        //load the file
        xmlDoc.Load(fs);

        //get all the nodes from the file
        xmlNode = xmlDoc.GetElementsByTagName("Drop");

        //write the values in the xml
        for (int i = 0; i <= drops.Count - 1; i++)
                    
            xmlNode[i].ChildNodes.Item(3).InnerText=drops[i].MinValue.ToString();
            xmlNode[i].ChildNodes.Item(4).InnerText = drops[i].MaxValue.ToString();   
        
    

    //save the document
    xmlDoc.Save(path);

【讨论】:

【参考方案3】:

尝试在 ReadXml 和 WriteXml 方法的末尾释放 FileStream 对象。

【讨论】:

以上是关于xmlDocument 已被另一个进程使用的主要内容,如果未能解决你的问题,请参考以下文章

gcloud cli 无法创建项目 - 您指定的项目 ID 已被另一个项目使用

该电子邮件地址已被另一个帐户使用(使用电子邮件/密码 Firebase 进行身份验证)

StaleObjectStateException:行已被另一个事务更新或删除?

VB 2010 和 app.config 文件和配置文件已被另一个程序更改

无法删除密钥。要删除的键已被另一个并发会话从索引中删除

Stream 意外结束,内容可能已被另一个组件读取。 Microsoft.AspNetCore.WebUtilities.MultipartReaderStream