File file=new File(filePath)报空指针

<pre name="code" class="java">刚开始代码是这么写的:
String filePath = request.getSession(true).getServletContext().getRealPath("prCodeImages");
	        File prCodeFile = new File(filePath);
	        if(!prCodeFile .exists()  && !prCodeFile .isDirectory()){
	        	prCodeFile .mkdir(); 
	        }

本机运行没问题,客户那边报
File prCodeFile = new File(filePath);这一行的空指针,
那就只有可能是<span style="font-family: Arial, Helvetica, sans-serif;">filePath这个变量的问题了。</span>
<span style="font-family: Arial, Helvetica, sans-serif;">以前没接触过这类问题,问了群里能人后才知道,linx系统和window系统是有区别的,获取路径方式不一样,改成下面这样:</span>

String filePath1 = request.getSession(true).getServletContext().getRealPath("/");
		String filePath = filePath1+"prCodeImages";
        File prCodeFile = new File(filePath);
        if(!prCodeFile .exists()  && !prCodeFile .isDirectory()){
        	prCodeFile .mkdir(); 
        }
就没有问题了。
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章