- 隱式對象
exception绞旅、out姆打、page沧卢、request鲫懒、response嫩实、application···
- page指令
<%@ page language="java" import="Java類" contentType="text/html;charset=UTF-8"%>
- out對象:
print()
、println()
窥岩、<%=變量名%>
- HTTP狀態(tài)碼
404 服務(wù)器無法找到所請求的頁面(Not Found)
500 請求不完整舶赔,服務(wù)器遇見了出乎意料的狀況(Internal Server Error)
200 請求被確認(OK)
- 獲取數(shù)據(jù)
request.getParameter()
重定向:response.sendRedirect("URL")
轉(zhuǎn)發(fā):request.getRequestDispatcher("path").forward(request,response)
- 解決中文亂碼
post方式
request.setCharacterEncoding("UTF-8");
response.setCharacterEncoding("UTF-8");
get方式
1. new String(str.getBytes("ISO-8859-1"),"UTF-8")
2. 配置tomcat\conf\server.xml:向Connector節(jié)點添加URIEncoding="UTF-8"