更新時間:2019年01月10日13時48分 來源:傳智播客 瀏覽次數(shù):
1
2
3
4
|
//1. 設(shè)置狀態(tài)碼為302 response.setStatus( 302 ); //2.設(shè)置響應(yīng)頭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); |
首發(fā):http://java.itcast.cn