当前位置: 首页 > 面试题库 >

在Java中,实体名称必须紧跟在实体引用错误中的“&”之后,但是我的xml文件中没有任何“&”号

颜安宁
2023-03-14
问题内容

我收到错误

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您可以通过删除反斜杠来纠正它。



 类似资料:
  • 问题内容: 我想在我的* .xhtml页面上放一个packman游戏。(我正在使用jsf 2和primefaces 3.5) 然而, 当我“翻译” xhtml中的html页面时,此脚本出现错误: 在行: 我得到: 实体名称必须紧随实体引用中的“&”之后。 任何想法如何解决? 问题答案: 到目前为止,所有发布的答案都给出了正确的解决方案,但是没有人能够正确解释具体问题的根本原因。 Facelets是

  • 我正在使用GlassFish 3.1.2和Eclipse4.2。如果使用指定一个JTA事务类型,我可以很高兴地添加一个新类,如果我放置批注,该类将作为实体读取。 现在,如果我将事务类型更改为,将数据源更改为非JTA,并且添加必要的代码来检索和,在这里我将调用和。为了解决这个问题,我必须将我的实体添加到persistence.xml中列出的类中。 现在,这解决了我的问题,但我不明白为什么。根据规范,

  • 我怎么能释放特定的资源在Any逻辑?在我的过程中,我有一个抓住块,它抓住3个替代资源(根据它们的可用性)。接近尾声时,我需要释放释放块中的一个潜在资源,根据被抓住的资源。我必须做什么才能知道哪个资源被扣押了,我如何释放它?我不能使用服务块,因为进程受到限制。 谢谢你的帮助!

  • 问题内容: 我记得很久以前就听说过,在CSS font-family属性中将引号括起来包含多个单词的字体名称被认为是“最佳实践”,例如: 对于它的麻烦,我尝试从中删除引号,而Safari和Firefox在呈现它时没有任何问题。 那么,这种经验法则是否有逻辑,还是只是一个神话?较旧的浏览器是否有问题,不再适用于当前版本?我这样做已经有很长时间了,以至于我从未停止思考这是否真的必要。 问题答案: 在C

  • 本文向大家介绍我们是否必须在实现Java接口的类中实现所有方法?,包括了我们是否必须在实现Java接口的类中实现所有方法?的使用技巧和注意事项,需要的朋友参考一下 是的,必须在实现接口的类中实现所有方法,直到并且除非该类被声明为抽象类。 只有两个选择- 实现接口定义的每个方法。 将该类声明为抽象类,结果迫使您在创建任何对象之前先对该类进行子类化(并实现缺少的方法)。 类不需要在接口中实现所有方法的