我正在运行一个R代码,其中连接了多个HTML文件。当R返回错误消息时,我打开了消息结果的源文件:
在HTML文件中,出现以下错误消息:
"结束标记(字体)违反了采用代理算法的第1步第1段。意外的结束标记(字体)。忽略。
由于我对HTML完全陌生,如果有人告诉我该消息的结果,我将不胜感激。这是代码行:
<TH ALIGN="left" COLSPAN="2">Methods in <A HREF="../../../../../../org/apache/poi/hssf/usermodel/package-summary.html">org.apache.poi.hssf.usermodel</A> with parameters of type <A HREF="../../../../../../org/apache/poi/ss/usermodel/CellType.html" title="enum in org.apache.poi.ss.usermodel">CellType</A></FONT></TH>
提前致谢。
答案 0 :(得分:1)
您有</FONT>
代码...但您没有初学者代码<FONT>
<TH ALIGN="left" COLSPAN="2">
Methods in
<A HREF="../../../../../../org/apache/poi/hssf/usermodel/package-summary.html">org.apache.poi.hssf.usermodel</A>
with parameters of type
<A HREF="../../../../../../org/apache/poi/ss/usermodel/CellType.html" title="enum in org.apache.poi.ss.usermodel">CellType</A>
</FONT>
</TH>
..所以或者你添加了开始
<TH ALIGN="left" COLSPAN="2">
<FONT
Methods in
<A HREF="../../../../../../org/apache/poi/hssf/usermodel/package-summary.html">org.apache.poi.hssf.usermodel</A>
with parameters of type
<A HREF="../../../../../../org/apache/poi/ss/usermodel/CellType.html" title="enum in org.apache.poi.ss.usermodel">CellType</A>
</FONT>
</TH>
或者你应该删除
<TH ALIGN="left" COLSPAN="2">
Methods in
<A HREF="../../../../../../org/apache/poi/hssf/usermodel/package-summary.html">org.apache.poi.hssf.usermodel</A>
with parameters of type
<A HREF="../../../../../../org/apache/poi/ss/usermodel/CellType.html" title="enum in org.apache.poi.ss.usermodel">CellType</A>
</TH>