当前位置: 技术问答>java相关
莫名其妙的系统提示!
来源: 互联网 发布时间:2015-05-15
本文导语: 当我用beans的时候,程序没错了,却蹦出来一堆莫名其妙的提示: java.lang.NullPointerException at _add__jsp._jspService(Compiled Code) at com.caucho.jsp.JavaPage.service(JavaPage.java:74) at com.caucho.jsp.Page.subservice(Page.java:485) at com.caucho.se...
当我用beans的时候,程序没错了,却蹦出来一堆莫名其妙的提示:
java.lang.NullPointerException
at _add__jsp._jspService(Compiled Code)
at com.caucho.jsp.JavaPage.service(JavaPage.java:74)
at com.caucho.jsp.Page.subservice(Page.java:485)
at com.caucho.server.http.FilterChainPage.doFilter(FilterChainPage.java:179)
at com.caucho.server.http.Invocation.service(Invocation.java:288)
at com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:132)
at com.caucho.server.http.ServletServer.serviceTop(ServletServer.java:937)
at com.caucho.server.http.HttpRequest.handleRequest(HttpRequest.java:213)
at com.caucho.server.http.HttpRequest.handleConnection(Compiled Code)
at com.caucho.server.TcpConnection.run(Compiled Code)
at java.lang.Thread.run(Thread.java:479)
各位高手,谁遇到过类似情况,帮帮我!
java.lang.NullPointerException
at _add__jsp._jspService(Compiled Code)
at com.caucho.jsp.JavaPage.service(JavaPage.java:74)
at com.caucho.jsp.Page.subservice(Page.java:485)
at com.caucho.server.http.FilterChainPage.doFilter(FilterChainPage.java:179)
at com.caucho.server.http.Invocation.service(Invocation.java:288)
at com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:132)
at com.caucho.server.http.ServletServer.serviceTop(ServletServer.java:937)
at com.caucho.server.http.HttpRequest.handleRequest(HttpRequest.java:213)
at com.caucho.server.http.HttpRequest.handleConnection(Compiled Code)
at com.caucho.server.TcpConnection.run(Compiled Code)
at java.lang.Thread.run(Thread.java:479)
各位高手,谁遇到过类似情况,帮帮我!
|
很简单的问题,你仔细看提示就明白了。
1#首先是使用了一个没有初始化的变量。
java.lang.NullPointerException
2#出错的行数提示
at com.caucho.jsp.JavaPage.service(JavaPage.java:74)
at com.caucho.jsp.Page.subservice(Page.java:485)
根据这些你就可以看你的程序检查一下你的程序了。
1#首先是使用了一个没有初始化的变量。
java.lang.NullPointerException
2#出错的行数提示
at com.caucho.jsp.JavaPage.service(JavaPage.java:74)
at com.caucho.jsp.Page.subservice(Page.java:485)
根据这些你就可以看你的程序检查一下你的程序了。
|
是空指针异常,找一找,哪儿出现了空指针!
|
9494