摘要:
1.response.sendRedirect("此处填写url地址"); 页面的路径是相对路径。sendRedirect可以将页面跳转到任何页面,不一定局限于本web应用中,如: response.sendRedirect("URL");跳转后浏览器地址栏变化。2.request.getRequestDispatcher("/upInfo.jsp").forward(request, response); 将收集到的值再次传到upInfo.jsp中 表单取值:request.getParameter("a"); 阅读全文
摘要:
1.jsp中设置编码方式为UTF-82.使用Servlet接受数据时在dopost()方法第一行中插入request.setCharacterEncoding("UTF-8");3.连接数据库的url设置,以mysql为例,添加useUnicode=true&characterEncoding=UTF-8";String connectUrl = "jdbc:mysql://localhost:3306/udb_sangxiaobo?useUnicode=true&characterEncoding=UTF-8";4.数据库的表 阅读全文