更新时间:2019年01月10日13时48分 来源:传智播客 浏览次数:
1
2
3
4
|
//1. 设置状态码为302 response.setStatus( 302 ); //2.设置响应头location [mw_shl_code=java, true ]response.setHeader( "location" , "/day15/responseDemo2" ); |
1
|
response.sendRedirect( "/day15/responseDemo2" ); |
1
2
3
4
5
6
7
8
9
|
1 . 方法:String getRealPath(String path) String b = context.getRealPath( "/b.txt" ); //web目录下资源访问 System.out.println(b); String c = context.getRealPath( "/WEB-INF/c.txt" ); //WEB-INF目录下的资源访问 System.out.println(c); String a = context.getRealPath( "/WEB-INF/classes/a.txt" ); //src目录下的资源访问 System.out.println(a); |