从 XML 文档中将 XML 作为字符串读取
Read XML as a string from inside XML Document
我有一个 XML文档,我正在将其反序列化为我的 C# 代码中的对象。它工作正常,直到我有如下节点,
<Name>ABC</Name>
<Message>Invalid Name</Message>
在上面的场景中,我在 C# 对象中得到的是 Name = ABC 和 消息 = 无效名称.
但现在我需要阅读 XML 文档中的完整 XML 节点。就是这样,
<ReadXML><fetch version="1.0" output-format="xml-platform" mapping="logical" distinct="false">
<entity name="customerproduct">
<attribute name="customerproductid" />
<attribute name="name" />
<attribute name="createdon" />
<attribute name="customertype" />
<attribute name="custodian_customerproductid" />
<attribute name="accountnumber" />
<order attribute="name" descending="false" />
<filter type="and">
<condition attribute="productgroup" operator="eq" uiname="Credit Cards" uitype="productgroup" value="{12344}" />
<condition attribute="customer" operator="eq" uiname="abc xyz" uitype="contact" value="{1234}" />
</filter>
</entity>
</fetch></ReadXML>
我的 C# 代码中有一个对象 ReadXML,我希望在 ReadXML 节点中获得完整的 XML 作为我的 Read[=56 中的字符串=]变量。
像这样,
string ReadXML = "<fetch version="1.0" output-format="xml-platform" mapping="logical" distinct="false">
<entity name="customerproduct">
<attribute name="customerproductid" />
<attribute name="name" />
<attribute name="createdon" />
<attribute name="customertype" />
<attribute name="custodian_customerproductid" />
<attribute name="accountnumber" />
<order attribute="name" descending="false" />
<filter type="and">
<condition attribute="productgroup" operator="eq" uiname="Credit Cards" uitype="productgroup" value="{12344}" />
<condition attribute="customer" operator="eq" uiname="abc xyz" uitype="contact" value="{1234}" />
</filter>
</entity>
</fetch>"
在我的代码中,我正在这样做,
XmlDocument doc = new XmlDocument();
doc.Load(@"D:\Development\Framework\TestApplication\XMLScript\XMLScript\XMLFile.xml");
string XML = doc.InnerXml;
operationTitle.Text = "Stop Lost Card"; ;
System.Xml.Serialization.XmlSerializer serializer = new System.Xml.Serialization.XmlSerializer(typeof(MyOperation));
MemoryStream memStream = new MemoryStream(Encoding.UTF8.GetBytes(vrp_XML));
MyOperation = (MyOperation)serializer.Deserialize(memStream);
在 MyOperation Class 中,我有这样的阅读XML,
[XmlElement(ElementName = "ReadXML")]
public string ReadXML { get; set; }
每当我尝试将 XML 读入字符串时,我都会收到以下错误,
System.InvalidOperationException was unhandled
HResult=-2146233079
Message=There is an error in XML document (1, 1329).
Source=System.Xml
StackTrace:
at System.Xml.Serialization.XmlSerializer.Deserialize(XmlReader xmlReader, String encodingStyle, XmlDeserializationEvents events)
at System.Xml.Serialization.XmlSerializer.Deserialize(Stream stream)
at VeriTouch.CRM.USD.AgentScripting.AgentScriptingControl.loadData() in C:\Projects\AgentScripting_30102018\AgentScripting\AgentScripting\AgentScriptingControl.xaml.cs:line 323
at VeriTouch.CRM.USD.AgentScripting.AgentScriptingControl.StartButton_Click(Object sender, RoutedEventArgs e) in C:\Projects\AgentScripting_30102018\AgentScripting\AgentScripting\AgentScriptingControl.xaml.cs:line 304
at System.Windows.RoutedEventHandlerInfo.InvokeHandler(Object target, RoutedEventArgs routedEventArgs)
at System.Windows.EventRoute.InvokeHandlersImpl(Object source, RoutedEventArgs args, Boolean reRaised)
at System.Windows.UIElement.RaiseEventImpl(DependencyObject sender, RoutedEventArgs args)
at System.Windows.UIElement.RaiseEvent(RoutedEventArgs e)
at System.Windows.Controls.Primitives.ButtonBase.OnClick()
at System.Windows.Controls.Button.OnClick()
at System.Windows.Controls.Primitives.ButtonBase.OnMouseLeftButtonUp(MouseButtonEventArgs e)
at System.Windows.UIElement.OnMouseLeftButtonUpThunk(Object sender, MouseButtonEventArgs e)
at System.Windows.Input.MouseButtonEventArgs.InvokeEventHandler(Delegate genericHandler, Object genericTarget)
at System.Windows.RoutedEventArgs.InvokeHandler(Delegate handler, Object target)
at System.Windows.RoutedEventHandlerInfo.InvokeHandler(Object target, RoutedEventArgs routedEventArgs)
at System.Windows.EventRoute.InvokeHandlersImpl(Object source, RoutedEventArgs args, Boolean reRaised)
at System.Windows.UIElement.ReRaiseEventAs(DependencyObject sender, RoutedEventArgs args, RoutedEvent newEvent)
at System.Windows.UIElement.OnMouseUpThunk(Object sender, MouseButtonEventArgs e)
at System.Windows.Input.MouseButtonEventArgs.InvokeEventHandler(Delegate genericHandler, Object genericTarget)
at System.Windows.RoutedEventArgs.InvokeHandler(Delegate handler, Object target)
at System.Windows.RoutedEventHandlerInfo.InvokeHandler(Object target, RoutedEventArgs routedEventArgs)
at System.Windows.EventRoute.InvokeHandlersImpl(Object source, RoutedEventArgs args, Boolean reRaised)
at System.Windows.UIElement.RaiseEventImpl(DependencyObject sender, RoutedEventArgs args)
at System.Windows.UIElement.RaiseTrustedEvent(RoutedEventArgs args)
at System.Windows.UIElement.RaiseEvent(RoutedEventArgs args, Boolean trusted)
at System.Windows.Input.InputManager.ProcessStagingArea()
at System.Windows.Input.InputManager.ProcessInput(InputEventArgs input)
at System.Windows.Input.InputProviderSite.ReportInput(InputReport inputReport)
at System.Windows.Interop.HwndMouseInputProvider.ReportInput(IntPtr hwnd, InputMode mode, Int32 timestamp, RawMouseActions actions, Int32 x, Int32 y, Int32 wheel)
at System.Windows.Interop.HwndMouseInputProvider.FilterMessage(IntPtr hwnd, WindowMessage msg, IntPtr wParam, IntPtr lParam, Boolean& handled)
at System.Windows.Interop.HwndSource.InputFilterMessage(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean& handled)
at MS.Win32.HwndWrapper.WndProc(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean& handled)
at MS.Win32.HwndSubclass.DispatcherCallbackOperation(Object o)
at System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Int32 numArgs)
at System.Windows.Threading.ExceptionWrapper.TryCatchWhen(Object source, Delegate callback, Object args, Int32 numArgs, Delegate catchHandler)
at System.Windows.Threading.Dispatcher.LegacyInvokeImpl(DispatcherPriority priority, TimeSpan timeout, Delegate method, Object args, Int32 numArgs)
at MS.Win32.HwndSubclass.SubclassWndProc(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam)
at MS.Win32.UnsafeNativeMethods.DispatchMessage(MSG& msg)
at System.Windows.Threading.Dispatcher.PushFrameImpl(DispatcherFrame frame)
at System.Windows.Threading.Dispatcher.PushFrame(DispatcherFrame frame)
at System.Windows.Application.RunDispatcher(Object ignore)
at System.Windows.Application.RunInternal(Window window)
at System.Windows.Application.Run(Window window)
at System.Windows.Application.Run()
at AgentScripting.App.Main()
at System.AppDomain._nExecuteAssembly(RuntimeAssembly assembly, String[] args)
at System.AppDomain.ExecuteAssembly(String assemblyFile, Evidence assemblySecurity, String[] args)
at Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssembly()
at System.Threading.ThreadHelper.ThreadStart_Context(Object state)
at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
at System.Threading.ThreadHelper.ThreadStart()
InnerException:
HResult=-2146232000
LineNumber=1
LinePosition=1329
Message=Unexpected node type Element. ReadElementString method can only be called on elements with simple or empty content. Line 1, position 1329.
Source=System.Xml
StackTrace:
at System.Xml.XmlReader.ReadElementString()
at Microsoft.Xml.Serialization.GeneratedAssembly.XmlSerializationReaderUSDOperation.Read4_AgentScript(Boolean isNullable, Boolean checkType)
at Microsoft.Xml.Serialization.GeneratedAssembly.XmlSerializationReaderUSDOperation.Read5_AgentScripts(Boolean isNullable, Boolean checkType)
at Microsoft.Xml.Serialization.GeneratedAssembly.XmlSerializationReaderUSDOperation.Read6_AgentBeginScriptList(Boolean isNullable, Boolean checkType)
at Microsoft.Xml.Serialization.GeneratedAssembly.XmlSerializationReaderUSDOperation.Read11_USDStep(Boolean isNullable, Boolean checkType)
at Microsoft.Xml.Serialization.GeneratedAssembly.XmlSerializationReaderUSDOperation.Read12_USDSteps(Boolean isNullable, Boolean checkType)
at Microsoft.Xml.Serialization.GeneratedAssembly.XmlSerializationReaderUSDOperation.Read13_USDOperation(Boolean isNullable, Boolean checkType)
at Microsoft.Xml.Serialization.GeneratedAssembly.XmlSerializationReaderUSDOperation.Read14_USDOperation()
InnerException:
----------------------------编辑-------- ----------------------------------
MyOperation.CS class
public class USDOperation
{
[XmlElement(ElementName = "OperationCode")]
public string OperationCode { get; set; }
[XmlElement(ElementName = "OperationName")]
public string OperationName { get; set; }
[XmlElement(ElementName = "AuthorizationLevel")]
public string AuthorizationLevel { get; set; }
[XmlElement(ElementName = "AgentBeginScriptList")]
public AgentBeginScriptList AgentBeginScriptList { get; set; }
[XmlElement(ElementName = "ReadXML")]
public string ReadXML { get; set; }
[XmlElement(ElementName = "USDSteps")]
public USDSteps USDSteps { get; set; }
[XmlElement(ElementName = "AgentEndScriptList")]
public AgentEndScriptList AgentEndScriptList { get; set; }
}
var xml=File.ReadAllText(@"D:\Development\Framework\TestApplication\XMLScript\XMLScript\XMLFile.xml")
问题是我们不能serialize/deserialize一个复杂类型到字符串。相反,我们可以定义自己的 type
并实现 IXmlSerializable
接口以提供我们自己的实现。
下面我定义了一个 MyString
class 来实现相同的。在 ReadXml
方法中,我使用 innerXml
。您也可以使用 outerXml
。
public class MyString : IXmlSerializable
{
string _xmlString;
public XmlSchema GetSchema()
{
return null;
}
public void ReadXml(XmlReader reader)
{
reader.MoveToContent();
Boolean isEmptyElement = reader.IsEmptyElement;
if (!isEmptyElement)
{
_xmlString = reader.ReadInnerXml();
}
}
public void WriteXml(XmlWriter writer)
{
writer.WriteString(_xmlString);
}
}
属性 ReadXML
现在的类型是 MyString
而不是 string
。
[XmlElement(ElementName = "ReadXML")]
public MyString ReadXML { get; set; }
参考:我从以下 Whosebug 问题中得到灵感
var xml=File.ReadAllText(@"D:\XMLFile.xml");
var xml_l=xml.ToLower();
var ind_1=xml_l.IndexOf("<fetch");
var ind_2=xml_l.IndexOf("</fetch",ind_1);
var xml_fetch=xml.Substring(ind_1, ind_2 - ind_1+8);
我有一个 XML文档,我正在将其反序列化为我的 C# 代码中的对象。它工作正常,直到我有如下节点,
<Name>ABC</Name>
<Message>Invalid Name</Message>
在上面的场景中,我在 C# 对象中得到的是 Name = ABC 和 消息 = 无效名称.
但现在我需要阅读 XML 文档中的完整 XML 节点。就是这样,
<ReadXML><fetch version="1.0" output-format="xml-platform" mapping="logical" distinct="false">
<entity name="customerproduct">
<attribute name="customerproductid" />
<attribute name="name" />
<attribute name="createdon" />
<attribute name="customertype" />
<attribute name="custodian_customerproductid" />
<attribute name="accountnumber" />
<order attribute="name" descending="false" />
<filter type="and">
<condition attribute="productgroup" operator="eq" uiname="Credit Cards" uitype="productgroup" value="{12344}" />
<condition attribute="customer" operator="eq" uiname="abc xyz" uitype="contact" value="{1234}" />
</filter>
</entity>
</fetch></ReadXML>
我的 C# 代码中有一个对象 ReadXML,我希望在 ReadXML 节点中获得完整的 XML 作为我的 Read[=56 中的字符串=]变量。
像这样,
string ReadXML = "<fetch version="1.0" output-format="xml-platform" mapping="logical" distinct="false">
<entity name="customerproduct">
<attribute name="customerproductid" />
<attribute name="name" />
<attribute name="createdon" />
<attribute name="customertype" />
<attribute name="custodian_customerproductid" />
<attribute name="accountnumber" />
<order attribute="name" descending="false" />
<filter type="and">
<condition attribute="productgroup" operator="eq" uiname="Credit Cards" uitype="productgroup" value="{12344}" />
<condition attribute="customer" operator="eq" uiname="abc xyz" uitype="contact" value="{1234}" />
</filter>
</entity>
</fetch>"
在我的代码中,我正在这样做,
XmlDocument doc = new XmlDocument();
doc.Load(@"D:\Development\Framework\TestApplication\XMLScript\XMLScript\XMLFile.xml");
string XML = doc.InnerXml;
operationTitle.Text = "Stop Lost Card"; ;
System.Xml.Serialization.XmlSerializer serializer = new System.Xml.Serialization.XmlSerializer(typeof(MyOperation));
MemoryStream memStream = new MemoryStream(Encoding.UTF8.GetBytes(vrp_XML));
MyOperation = (MyOperation)serializer.Deserialize(memStream);
在 MyOperation Class 中,我有这样的阅读XML,
[XmlElement(ElementName = "ReadXML")]
public string ReadXML { get; set; }
每当我尝试将 XML 读入字符串时,我都会收到以下错误,
System.InvalidOperationException was unhandled
HResult=-2146233079
Message=There is an error in XML document (1, 1329).
Source=System.Xml
StackTrace:
at System.Xml.Serialization.XmlSerializer.Deserialize(XmlReader xmlReader, String encodingStyle, XmlDeserializationEvents events)
at System.Xml.Serialization.XmlSerializer.Deserialize(Stream stream)
at VeriTouch.CRM.USD.AgentScripting.AgentScriptingControl.loadData() in C:\Projects\AgentScripting_30102018\AgentScripting\AgentScripting\AgentScriptingControl.xaml.cs:line 323
at VeriTouch.CRM.USD.AgentScripting.AgentScriptingControl.StartButton_Click(Object sender, RoutedEventArgs e) in C:\Projects\AgentScripting_30102018\AgentScripting\AgentScripting\AgentScriptingControl.xaml.cs:line 304
at System.Windows.RoutedEventHandlerInfo.InvokeHandler(Object target, RoutedEventArgs routedEventArgs)
at System.Windows.EventRoute.InvokeHandlersImpl(Object source, RoutedEventArgs args, Boolean reRaised)
at System.Windows.UIElement.RaiseEventImpl(DependencyObject sender, RoutedEventArgs args)
at System.Windows.UIElement.RaiseEvent(RoutedEventArgs e)
at System.Windows.Controls.Primitives.ButtonBase.OnClick()
at System.Windows.Controls.Button.OnClick()
at System.Windows.Controls.Primitives.ButtonBase.OnMouseLeftButtonUp(MouseButtonEventArgs e)
at System.Windows.UIElement.OnMouseLeftButtonUpThunk(Object sender, MouseButtonEventArgs e)
at System.Windows.Input.MouseButtonEventArgs.InvokeEventHandler(Delegate genericHandler, Object genericTarget)
at System.Windows.RoutedEventArgs.InvokeHandler(Delegate handler, Object target)
at System.Windows.RoutedEventHandlerInfo.InvokeHandler(Object target, RoutedEventArgs routedEventArgs)
at System.Windows.EventRoute.InvokeHandlersImpl(Object source, RoutedEventArgs args, Boolean reRaised)
at System.Windows.UIElement.ReRaiseEventAs(DependencyObject sender, RoutedEventArgs args, RoutedEvent newEvent)
at System.Windows.UIElement.OnMouseUpThunk(Object sender, MouseButtonEventArgs e)
at System.Windows.Input.MouseButtonEventArgs.InvokeEventHandler(Delegate genericHandler, Object genericTarget)
at System.Windows.RoutedEventArgs.InvokeHandler(Delegate handler, Object target)
at System.Windows.RoutedEventHandlerInfo.InvokeHandler(Object target, RoutedEventArgs routedEventArgs)
at System.Windows.EventRoute.InvokeHandlersImpl(Object source, RoutedEventArgs args, Boolean reRaised)
at System.Windows.UIElement.RaiseEventImpl(DependencyObject sender, RoutedEventArgs args)
at System.Windows.UIElement.RaiseTrustedEvent(RoutedEventArgs args)
at System.Windows.UIElement.RaiseEvent(RoutedEventArgs args, Boolean trusted)
at System.Windows.Input.InputManager.ProcessStagingArea()
at System.Windows.Input.InputManager.ProcessInput(InputEventArgs input)
at System.Windows.Input.InputProviderSite.ReportInput(InputReport inputReport)
at System.Windows.Interop.HwndMouseInputProvider.ReportInput(IntPtr hwnd, InputMode mode, Int32 timestamp, RawMouseActions actions, Int32 x, Int32 y, Int32 wheel)
at System.Windows.Interop.HwndMouseInputProvider.FilterMessage(IntPtr hwnd, WindowMessage msg, IntPtr wParam, IntPtr lParam, Boolean& handled)
at System.Windows.Interop.HwndSource.InputFilterMessage(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean& handled)
at MS.Win32.HwndWrapper.WndProc(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean& handled)
at MS.Win32.HwndSubclass.DispatcherCallbackOperation(Object o)
at System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Int32 numArgs)
at System.Windows.Threading.ExceptionWrapper.TryCatchWhen(Object source, Delegate callback, Object args, Int32 numArgs, Delegate catchHandler)
at System.Windows.Threading.Dispatcher.LegacyInvokeImpl(DispatcherPriority priority, TimeSpan timeout, Delegate method, Object args, Int32 numArgs)
at MS.Win32.HwndSubclass.SubclassWndProc(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam)
at MS.Win32.UnsafeNativeMethods.DispatchMessage(MSG& msg)
at System.Windows.Threading.Dispatcher.PushFrameImpl(DispatcherFrame frame)
at System.Windows.Threading.Dispatcher.PushFrame(DispatcherFrame frame)
at System.Windows.Application.RunDispatcher(Object ignore)
at System.Windows.Application.RunInternal(Window window)
at System.Windows.Application.Run(Window window)
at System.Windows.Application.Run()
at AgentScripting.App.Main()
at System.AppDomain._nExecuteAssembly(RuntimeAssembly assembly, String[] args)
at System.AppDomain.ExecuteAssembly(String assemblyFile, Evidence assemblySecurity, String[] args)
at Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssembly()
at System.Threading.ThreadHelper.ThreadStart_Context(Object state)
at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
at System.Threading.ThreadHelper.ThreadStart()
InnerException:
HResult=-2146232000
LineNumber=1
LinePosition=1329
Message=Unexpected node type Element. ReadElementString method can only be called on elements with simple or empty content. Line 1, position 1329.
Source=System.Xml
StackTrace:
at System.Xml.XmlReader.ReadElementString()
at Microsoft.Xml.Serialization.GeneratedAssembly.XmlSerializationReaderUSDOperation.Read4_AgentScript(Boolean isNullable, Boolean checkType)
at Microsoft.Xml.Serialization.GeneratedAssembly.XmlSerializationReaderUSDOperation.Read5_AgentScripts(Boolean isNullable, Boolean checkType)
at Microsoft.Xml.Serialization.GeneratedAssembly.XmlSerializationReaderUSDOperation.Read6_AgentBeginScriptList(Boolean isNullable, Boolean checkType)
at Microsoft.Xml.Serialization.GeneratedAssembly.XmlSerializationReaderUSDOperation.Read11_USDStep(Boolean isNullable, Boolean checkType)
at Microsoft.Xml.Serialization.GeneratedAssembly.XmlSerializationReaderUSDOperation.Read12_USDSteps(Boolean isNullable, Boolean checkType)
at Microsoft.Xml.Serialization.GeneratedAssembly.XmlSerializationReaderUSDOperation.Read13_USDOperation(Boolean isNullable, Boolean checkType)
at Microsoft.Xml.Serialization.GeneratedAssembly.XmlSerializationReaderUSDOperation.Read14_USDOperation()
InnerException:
----------------------------编辑-------- ----------------------------------
MyOperation.CS class
public class USDOperation
{
[XmlElement(ElementName = "OperationCode")]
public string OperationCode { get; set; }
[XmlElement(ElementName = "OperationName")]
public string OperationName { get; set; }
[XmlElement(ElementName = "AuthorizationLevel")]
public string AuthorizationLevel { get; set; }
[XmlElement(ElementName = "AgentBeginScriptList")]
public AgentBeginScriptList AgentBeginScriptList { get; set; }
[XmlElement(ElementName = "ReadXML")]
public string ReadXML { get; set; }
[XmlElement(ElementName = "USDSteps")]
public USDSteps USDSteps { get; set; }
[XmlElement(ElementName = "AgentEndScriptList")]
public AgentEndScriptList AgentEndScriptList { get; set; }
}
var xml=File.ReadAllText(@"D:\Development\Framework\TestApplication\XMLScript\XMLScript\XMLFile.xml")
问题是我们不能serialize/deserialize一个复杂类型到字符串。相反,我们可以定义自己的 type
并实现 IXmlSerializable
接口以提供我们自己的实现。
下面我定义了一个 MyString
class 来实现相同的。在 ReadXml
方法中,我使用 innerXml
。您也可以使用 outerXml
。
public class MyString : IXmlSerializable
{
string _xmlString;
public XmlSchema GetSchema()
{
return null;
}
public void ReadXml(XmlReader reader)
{
reader.MoveToContent();
Boolean isEmptyElement = reader.IsEmptyElement;
if (!isEmptyElement)
{
_xmlString = reader.ReadInnerXml();
}
}
public void WriteXml(XmlWriter writer)
{
writer.WriteString(_xmlString);
}
}
属性 ReadXML
现在的类型是 MyString
而不是 string
。
[XmlElement(ElementName = "ReadXML")]
public MyString ReadXML { get; set; }
参考:我从以下 Whosebug 问题中得到灵感
var xml=File.ReadAllText(@"D:\XMLFile.xml");
var xml_l=xml.ToLower();
var ind_1=xml_l.IndexOf("<fetch");
var ind_2=xml_l.IndexOf("</fetch",ind_1);
var xml_fetch=xml.Substring(ind_1, ind_2 - ind_1+8);