Servlet基本概念記錄(隨筆...不完全...)
阿新 • • 發佈:2019-03-03
https 絕對路徑 end mod get quicktime tco 種類 uic
1.HTTP的請求方法種類
GET,POST,HEAD,PUT,DELETE,TARCE,OPTIONS,CONNECT
2.常用到的MIME類型
text/html , application/pdf , video/quicktime , application/java , image/jpeg , application/jar , application/x-zip , application/octet-stream
可通過 HttpServletResponse實例的 setContentType(String contentType)設置
例如:response.setContentType("application/jar");
3.response對象中的 sendRedirect(String location)方法中location值
a.絕對路徑 : www.baidu.com
b.相對路徑:
①/開頭 /result/index 重定向到webapp下的 /result/index下
②不以/開頭 假設客戶端原來的請求地址是 localhost:8080/getUser/userInfo/modifyInfo.jsp ,此時location為 index.jsp的話,那麽重定向後的地址是:localhost:8080/getUser/userInfo/index.jsp
Servlet基本概念記錄(隨筆...不完全...)