Servlet開發-day05

farsun發表於2021-09-09

一、前臺從後臺取值?

servlet-<<jsp

方式一:

servlet:requegst.setAttribute("name","周杰");

jsp:request.getAttribute("name");

方式二:

servlet:request.setAttribute("name","周杰");

${name}

後臺往前臺寫值?

servlet:out.write("網頁面寫值");

二、Web亂碼問題解決方案?

1、jsp中設定contentType="text/html;charset=utf-8"

2、servlet中設定

request.setCharacterEncoding("utf-8");

response.setCharacterEncoding("utf-8");

response.setContentType("text/html;charset=utf-8");

3、資料庫訪問連結中設定

jdbc:mysql://localhost:3306/dataName?useUnicode=true&useCharacterEncoding=utf-8




來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/4289/viewspace-2819318/,如需轉載,請註明出處,否則將追究法律責任。

相關文章