最近在自学javaee,相对路径和绝对路径很是苦恼。下面是我的记忆方式。
创建一个Web项目,有的时候我们需要访问一些资源,那么就涉及到了相对路径和绝对路径的问题。
将资源文件分别放在:
Web工程的根目录下
Web工程的src目录下
Web工程的WebRoot目录下
Web工程的WebRoot/WEB-INF目录下
通过java代码,可根据资源文件所在的目录直接进行访问。
当将Web项目发布到Tomcat服务器上之后,资源文件的位置就发生了变化。
放置在Web工程的根目录下的资源文件不见了
放置在Web工程的src目录下的资源文件到WEB-INF/classes目录下
放置在Web工程的WebRoot下的资源文件到了项目的根目录下
放置在Web工程的WebRoot/WEB-INF目录下的资源文件到WEB-INF下。
通过java代码直接访问web项目的资源文件。
public static void main(String[] args) throws Exception {
// File filename = new File(“1.txt”);
// File filename = new File(“src/2.txt”);
// File filename = new File(“WebRoot/3.txt”);
File filename = new File(“WebRoot/WEB-INF/4.txt”);
InputStream in = new FileInputStream(filename);
PrintStream out = System.out;
IOUtils.copy(in, out);
}
将web项目发布到Tomcat服务器后所对应的资源文件的路径。
public void doGet(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
ServletContext context = getServletContext();
//在WebRoot下的资源文件发布到Tomcat服务器后,对应的路径是根目录下。
//getRealPath(String path)方法,根据所传入的相对路径,返回一个绝对路径。
// String realPath = context.getRealPath(“3.txt”);
// String realPath = context.getRealPath(“WEB-INF/4.txt”);
String realPath = context.getRealPath(“WEB-INF/classes/2.txt”);
File filename = new File(realPath);
InputStream in = new FileInputStream(filename);
OutputStream out = response.getOutputStream();
//这里调用的IOUtils的方法,需要引入一个commons-io-1.4.jar的jar文件到lib目录中。
IOUtils.copy(in, out);
}
public void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
doGet(request, response);
}