C#을 사용하여 XML 문서에서 네임스페이스를 쉽게 지울 수 있습니다
XML 처리에서 네임스페이스는 초대받지 않은 손님처럼 데이터를 방해하는 골칫거리가 되는 경우가 많습니다. 이러한 중복 네임스페이스를 제거하는 것은 번거로울 수 있지만 .NET 3.5 SP1의 C# 기능을 사용하면 네임스페이스를 쉽게 제거할 수 있습니다.
XML 문서의 네임스페이스 정리를 구현하는 데 도움이 되도록 간단하고 효율적인 솔루션을 제공합니다. 인터페이스 기반 RemoveAllNamespaces()
함수는 XML 문서에서 네임스페이스를 제거하는 간단하고 우아한 방법을 제공합니다.
RemoveAllNamespaces()
자세한 기능설명
솔루션의 핵심은 XML 문서를 입력으로 받고 모든 네임스페이스를 제거하는 간단한 RemoveAllNamespaces()
함수입니다.
<code class="language-csharp">public static string RemoveAllNamespaces(string xmlDocument) { XElement xmlDocumentWithoutNs = RemoveAllNamespaces(XElement.Parse(xmlDocument)); return xmlDocumentWithoutNs.ToString(); }</code>
기본 핵심 재귀 함수 RemoveAllNamespaces()
가 무거운 작업을 처리합니다.
<code class="language-csharp">private static XElement RemoveAllNamespaces(XElement xmlDocument) { if (!xmlDocument.HasElements) { XElement xElement = new XElement(xmlDocument.Name.LocalName); xElement.Value = xmlDocument.Value; foreach (XAttribute attribute in xmlDocument.Attributes()) xElement.Add(attribute); return xElement; } return new XElement(xmlDocument.Name.LocalName, xmlDocument.Elements().Select(el => RemoveAllNamespaces(el))); }</code>
XML 예제 및 결과
이 솔루션의 강력한 기능을 설명하기 위해 네임스페이스가 포함된 XML 예를 살펴보겠습니다.
<code class="language-xml"><?xml version="1.0" encoding="utf-16"?> <ArrayOfInserts xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <insert> <offer xmlns="http://schema.peters.com/doc_353/1/Types">0174587</offer> <type2 xmlns="http://schema.peters.com/doc_353/1/Types">014717</type2> <supplier xmlns="http://schema.peters.com/doc_353/1/Types">019172</supplier> <id_frame xmlns="http://schema.peters.com/doc_353/1/Types" /> <type3 xmlns="http://schema.peters.com/doc_353/1/Types"> <type2 /> <main>false</main> </type3> <status xmlns="http://schema.peters.com/doc_353/1/Types">Some state</status> </insert> </ArrayOfInserts></code>
RemoveAllNamespaces()
함수를 호출하면 XML 문서가 변환되고 모든 네임스페이스가 제거됩니다.
<code class="language-xml"><?xml version="1.0" encoding="utf-16"?> <ArrayOfInserts> <insert> <offer>0174587</offer> <type2>014717</type2> <supplier>019172</supplier> <id_frame /> <type3> <type2 /> <main>false</main> </type3> <status>Some state</status> </insert> </ArrayOfInserts></code>
요약
이제 RemoveAllNamespaces()
솔루션을 사용하여 C# XML 문서에서 네임스페이스를 제거할 수 있는 깔끔하고 안정적인 방법을 갖게 되었습니다. 단일 요소를 처리하든 복잡한 계층 구조를 처리하든 우리 코드는 XML 데이터에 네임스페이스가 없음을 보장합니다.
위 내용은 C#을 사용하여 XML 문서에서 네임스페이스를 효율적으로 제거하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!