我收到错误

The entity name must immediately follow the '&' in the entity reference.

但是我的XML文档中没有“&”号!有谁知道为什么会这样?这是我要解析的XML文档:
<rss version= "2.0" >
<channel>
<item>
<title>Best iPad strategy games</title>
<link>http://feedproxy.google.com/~r/TheIphoneBlog/~3/198mhX3FVmw/story01.htm</link>          </item>
<item>
<title>Share your life with friends in real time with Spin</title>
<link>http://feedproxy.google.com/~r/TheIphoneBlog/~3/9G84sETG_9I/story01.htm</link>    </item>
<item>
<title>How to stop receiving notifications from a website in OS X Mavericks</title>
<link>http://feedproxy.google.com/~r/TheIphoneBlog/~3/IyxFbLcmoOE/story01.htm</link>   </item>
<item>
<title>iPad mini with Retina Display hitting resellers in the UK, 4G LTE models still     look scarce</title>
<link>http://feedproxy.google.com/~r/TheIphoneBlog/~3/FGTUITMMR0E/story01.htm</link>  </item>
<item>
<title>Procraster for iPhone helps you fight procrastination and break down large projects</title>
<link>http://feedproxy.google.com/~r/TheIphoneBlog/~3/o5ATGmzDthw/story01.htm</link></item>
<item><title>Pad & Quill brings ages-old craftsmanship to all new leather bags and sleeves</title>        <link>http://feedproxy.google.com/~r/TheIphoneBlog/~3/NJzAu_PyQNo/story01.htm</link></item>
<item><title>BillGuard 4.0 for iPhone brings spending analytics, savings alerts, and more</title>   <link>http://feedproxy.google.com/~r/TheIphoneBlog/~3/HY4zCH7l1QM/story01.htm</link></item>
<item><title>GTA: San Andreas coming to iOS in December, game controller support in tow</title><link>http://feedproxy.google.com/~r/TheIphoneBlog/~3/SVNSBiViJdk/story01.htm</link></item>
<item><title>QuizUp developer Plain Vanilla fixes server issues that left user data vulnerable</title><link>http://feedproxy.google.com/~r/TheIphoneBlog/~3/Nzhq0f5O3Ns/story01.htm</link></item>
<item><title>Iterate 58: Paul Haddad on Tweetbot 3</title><link>http://feedproxy.google.com/~r/TheIphoneBlog/~3/XJ4dCJWZFVo/story01.htm</link></item>
<\item><title>Deal of the Day: Incipio EDGE PRO Hard Shell Slider Case for iPhone 5S</title><link>http://feedproxy.google.com/~r/TheIphoneBlog/~3/ypt-j2OBqOM/story01.htm</link></item>
<item><title>Moshi Ionbank 10k battery pack review: Good looks and plenty of power</title>   <link>http://feedproxy.google.com/~r/TheIphoneBlog/~3/0HUTAMqX82k/story01.htm</link></item>
<item><title>Infinity Blade goes free for Black Friday week</title>    <link>http://feedproxy.google.com/~r/TheIphoneBlog/~3/q0XdepWSTiM/story01.htm</link></item>    <item><title>Procreate 2 for iPad now available, adds 64-bit, iOS 7 design, new GPU    accelerated filters, and more</title>
</channel></rss>

在此先感谢您的帮助!

最佳答案

是的,您确实有一个&符:

<item><title>Pad & Quill

尝试
<item><title>Pad &amp; Quill

另外,这可能是拼写错误:<\item><title>Deal of the Day,您可以通过删除反斜杠来纠正它。

关于java - 在Java中,实体名称必须立即跟随Entityt引用错误中的 '&',但是我的xml文件中没有任何“&”号,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/20230551/

10-09 13:24