关于MyEclipse Servlet中调用this.getServletContext().getRealPath()抛出异常为null的问题
问题描述:
在显示Web应用目录下图片1.png时调用new FileInputStream(this.getServletContext().getRealPath(1.png))时抛出空指针异常:
严重: Servlet.service() for servlet [downloadServlet] in context with path [/Servlet] threw exception
java.lang.NullPointerException
解决:经反复确定代码输入及路径正常后,查找到此解决方案servletContext.getRealPath(),在此阐述一下个人理解:
(2)调用this.getClass().getClassLoader().getResource("/").getPath(); 获取到classes目录的全路径,在得到classes目录的全路径后再根据字符串的截取与拼装达到你的要求即可。
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。