常见错误解析

1、List使用前需要new实例,不能List<String> list=null,这样会报出异常。

List正确使用:

List<String> list=new ArrayList();



2、异常报错,如何准确锁定错误位置,可在catch代码里添加e.printStackTrace();即可。

catch (Exception e) {

e.printStackTrace();

throw new SessionBeanException("操作失败");

}



3、Null pointer access: The variable amountBean can only be null at this location

报错原因:在初始化JavaBean的时候,应该new实例。如果直接XXBean bean=null,就会报错。

你可能感兴趣的:(java,错误解析)