20120710 J2EE 程式設計八

1.中文碼的問題
將 textbox 內的文字先轉成 UTF-8 在印出來就部會有中文亂碼的問題!一般都用在留言板。
index.html

<html>
  <head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  </head>
  <body bgcolor='skyblue'>
    <a href='../index.htm'> 回上一頁 </a><hr>
    中文碼傳遞
    <form name='f1' method='post' action='check.jsp'>
      輸入中文字: <input type='text' name='act'> </br>
      <input type='reset' value='全部清空'>
      <input type='submit' value='確認送出'> <br>
    </form>
  </body>
</html>

check.jsp

<%
  String act = request.getParameter("act");
  if ( act !=null ){
    act = new String( act.getBytes("ISO-8859-1"), "UTF-8");
  }
  out.print( act + "</br>");
%>



2.安裝 Linux - Centos
下載 Centos
然後啟用 VMware 安裝



No comments: