当选择是美国专利号码时,我正试图制造一个加速器来提取专利文件。所有安装尝试都会导致“加速器的信息出了问题”。我正在尽我最大的努力去学习和研究可能的陷阱,但没有成功。xml甚至不会在我的浏览器中显示。我的安装文件是:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Patent Number Accelerator Install</title> </head> <body> <p> <button id="PatentButton" onclick="window.external.AddService('http://homepages.sover.net/~tiplady/PNL.xml')"> Install Patent Number Accelerator </button> </p> </body> </html>
如有任何指导,将不胜感激。
发布于 2009-11-12 08:00:35
我猜:这很简单。xml文件中有一个未关闭的文字。
在...PN/{selection}之后检查引号,您可能会注意到(取决于您的字体),引号是” (右双引号),其中有Unicode-codeposition U+201D),而应该有一个" (带有共沉积U+0022的引号)。
这意味着在解析时,您有一个狡猾的字符串,并且xml-文件无效。
https://stackoverflow.com/questions/1720581
复制相似问题