gpt4 book ai didi

java - org.apache.jasper.jasperException 无法编译 jsp 类

转载 作者:太空宇宙 更新时间:2023-11-04 11:37:53 24 4
gpt4 key购买 nike

我在运行 jsp 文件时遇到此错误,请帮我找出这个错误。

HTTP Status 500 - Unable to compile class for JSP:

type Exception report

message Unable to compile class for JSP:

description The server encountered an internal error that prevented it from fulfilling this request.

exception

org.apache.jasper.JasperException: Unable to compile class for JSP:

An error occurred at line: 619 in the jsp file: /bbb_api.jsp
The type Date is ambiguous
616: String starttime = recording.getElementsByTagName("startTime").item(0).getTextContent();
617: try{
618: SimpleDateFormat sdf = new SimpleDateFormat("dd-MM-yyyy HH:mm:ss");
619: Date resultdate = new Date(Long.parseLong(starttime));
620: starttime = sdf.format(resultdate);
621: }catch(Exception e){
622:

Stacktrace:
org.apache.jasper.compiler.DefaultErrorHandler.javacError(DefaultErrorHandler.java:92)
org.apache.jasper.compiler.ErrorDispatcher.javacError(ErrorDispatcher.java:330)
org.apache.jasper.compiler.JDTCompiler.generateClass(JDTCompiler.java:443)
org.apache.jasper.compiler.Compiler.compile(Compiler.java:356)
org.apache.jasper.compiler.Compiler.compile(Compiler.java:334)
org.apache.jasper.compiler.Compiler.compile(Compiler.java:321)
org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:592)
org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:328)
org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:313)
org.apache.jasper.servlet.JspServlet.service(JspServlet.java:260)
javax.servlet.http.HttpServlet.service(HttpServlet.java:723)

note The full stack trace of the root cause is available in the Apache Tomcat/6.0.37 logs.
Apache Tomcat/6.0.37

最佳答案

从该 JSP 的页面导入中的 jva.util.Date 导入日期

<%@page import="java.util.Date" %>

或使用

Date 类的完全限定名称,例如 java.util.Date

 java.util.Date resultdate = new java.util.Date(Long.parseLong(starttime));

sql 包 Date 和 util Date 类之间不明确

关于java - org.apache.jasper.jasperException 无法编译 jsp 类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43084157/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com