javaweb项目普通类获取服务器项目路径

	public static String getViews(){
		String path =(String.valueOf(Thread.currentThread().getContextClassLoader().getResource(""))).replaceFirst("file:/","").replaceFirst("WEB-INF/classes/","");	
		path=path+"views"+File.separator;
		path=path.replaceAll("\\\\","/");
		return path;
	}

本代码获取得是服务器上传图片文件路径

你可能感兴趣的:(JAVA)