在jsp中找到未关闭的标签

时间:2018-09-25 09:09:49

标签: java html jsp tags

我正在使用MySQL,Java,JSP。如果我遇到如下错误,如何在不手动查看代码的情况下找到错误?该文件是.jsp。网页错误:

  

com.itextpdf.tool.xml.exceptions.RuntimeWorkerException:无效   找到嵌套标签td,预期结束标签br

strBuffer.append("<tr><td colspan=\"2\" ><strong>BlahVariable</strong> 
</td>");
strBuffer.append("<td colspan=\"5\" >");

strBuffer.append("</td></tr><tr>");
strBuffer.append("<td colspan=\"2\" ><strong>BlahVariable</strong></td><td 
colspan=\"5\" >");
if(BlahVariable.equals("Y") ||BlahVariable!=0) 
    strBuffer.append(BlahVariablez);
else
    strBuffer.append("-");
strBuffer.append("</td></tr><tr>");
strBuffer.append("<td colspan=\"2\" ><strong>Blah blah <sup>&diams;</sup> 
</strong></td>");
strBuffer.append("<td colspan=\"5\" >"+ BlahVariable+"</td></tr><tr>");
strBuffer.append("<td colspan=\"2\" ><strong>BlahVariable</strong></td>");
strBuffer.append("<td colspan=\"5\" >");

1 个答案:

答案 0 :(得分:0)

  • 可以为此创建一个Custom Exception of java
  • 因此可以很容易地发现错误。
  • 为避免此类错误,可以事先在html / jsp文件本身中编写代码,然后再按Ctrl + C Ctrl + V。