Best way XML File handling bullet point •

白昼怎懂夜的黑 提交于 2019-12-12 11:10:18

问题


For an XML file I am creating I have data that contains a bullet • what is the best method for handling this in xml data? It opens in an XML editor and reads fine, but I cannot import the file via SSIS, I get an error regarding this point.

<xmldata>• Bullet</xmldata>

Renders fine, but cannot import with SSIS.


回答1:


The data you have received is not well-formed XML. It may have < and > in it, but it is not XML. The program that generated it is broken and needs to be fixed.

In particular, is the bullet the only character that will cause you problems? A program that puts one garbage character into your "XML" will likely put others in, since it doesn't seem to know what valid XML looks like.




回答2:


Escape it:

&#8226;


来源:https://stackoverflow.com/questions/2454566/best-way-xml-file-handling-bullet-point

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!