2018.5.22隨筆
阿新 • • 發佈:2018-05-24
res set 如何 else 註釋 -- 公司 字節流 一行代碼
---恢復內容開始---
WEB ---Servlet容器都是由服務器廠商提供 比如說apache的Tomcat
+
需要提前約定如何配合Sun公司---Servlet
+
WEB應用---Servlet組件可以動態生成應答資源的組件------由WEB應用廠商提供
不清楚查文檔就可以了
myeclipse和eclipse的差別,my需要付費多了售後
註釋會對一個返回值進行說明
if(method.equals("GET")){
//用戶請求方式是GET,做GET處理
doGet(req,res);
}else if(method.equals("POST")){
//用戶請求方式是POST,做POST處理
doPost(req,res);
}
public void doGet(ServleRequest req,ServletResponse res){
}
public void doPost(ServleRequest req,ServletResponse res){
}
-----------------------------------------------------------------------------------------
public class
---恢復內容結束---
總結:不管是字符流還是字節流,解決亂碼問題,可以用一行代碼搞定:
response.setContentType("text/html;charset=xxx");0
2018.5.22隨筆