English 中文(简体)
利用LINQ在C#中消除或忽视未申报的实体
原标题:Overriding or ignoring undeclared entities in C# using LINQ

我没有什么用处,它利用准则在XML档案中找到某些东西。 它相当迅速和公正地收集这些地雷。 然而,某些批量卷宗中约有20%没有读到,而且有空档,没有读到,因为编号为°。 这是“关于未申报实体的参考文件。 以前的问题已经解决。

上个问题提出的解决办法不能在此直接适用。 我没有自由去修改档案,复制文件,替换案例,或在复印件中插入标记,似乎效率低下。 怎样才能让林研中心忽视未申报的实体,因为这些实体绝对不会影响我的方案取得什么进展? 或者,或许还有一种获得X文件的良好方法。 事先向一些实体申报?

最佳回答

遗憾的是,实体是XML(http://www.w3.org/TR/xml/#sec-well-form” rel=“nofollow”>2.1-Formed XML 文件的一部分。 你似乎想再说<代码>XDocument。 Load装上XML档案,但事实上并不符合规则,这是相当合理的。

如果你们的用户通过本应是XML文件但又没有界定的实体,那么,你们要么必须让他们以有效格式提供文件,要么以建议的方式处理你自己在装货时的不正确性。

在我看来,从你的限制来看,检验后的办法似乎是沿用(。 在OM中审定XML文件。

如果有些实体是固定的,并且是列入公共图象的,那么,你就不得不制定自己的图谋,界定你们所需要的所有实体。 因此,为<代码>XMLReader设定一个通用的<代码>,其中参考了您本人的定制。 由于某些档案没有装满,因此将必要的实体添加到该图纸上,然后,你将编制一份清单,列出你为证明XML档案有效而需要界定的所有实体。

然后,就每份文件而言,你试图通过上述<代码><>><>>><>代码/代码”为文档设定一个<>XMLReader,并将XDocument(XMLReader)上载。

问题回答

暂无回答




相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

NSArray s, Primitive types and Boxing Oh My!

I m pretty new to the Objective-C world and I have a long history with .net/C# so naturally I m inclined to use my C# wits. Now here s the question: I feel really inclined to create some type of ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

How to Use Ghostscript DLL to convert PDF to PDF/A

How to user GhostScript DLL to convert PDF to PDF/A. I know I kind of have to call the exported function of gsdll32.dll whose name is gsapi_init_with_args, but how do i pass the right arguments? BTW, ...

Linqy no matchy

Maybe it s something I m doing wrong. I m just learning Linq because I m bored. And so far so good. I made a little program and it basically just outputs all matches (foreach) into a label control. ...

热门标签