标签:页面 cte sql web har als 教程 ons tst
这个问题是对新手来说比较头疼的问题了。
虽然没什么难度,但是得搜到好的教程才行。??
加上doGet中的前两行即可
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { // TODO Auto-generated method stub //response.getWriter().append("Served at: ").append(request.getContextPath()); request.setCharacterEncoding("utf-8");//必须写在第一位,因为采用这种方式去读取数据,否
则数据会出错。
response.setContentType("text/html;charset=utf-8");//设置传过去的页面显示的编码 String method=request.getParameter("method"); try { if ("show".equals(method)){ show(request,response); } else if("add".equals(method)){ add(request, response); } } catch (SQLException e) { // TODO Auto-generated catch block e.printStackTrace(); } }
问题解决。
标签:页面 cte sql web har als 教程 ons tst
原文地址:https://www.cnblogs.com/AbsolutelyPerfect/p/9278229.html