博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Servlet作业2-将表单提交的商品信息输出到页面中
阅读量:5960 次
发布时间:2019-06-19

本文共 2591 字,大约阅读时间需要 8 分钟。

1,表单页面 shangpin.html

1  2  3  4 
5 商品信息 6 7 8 9 商品信息
10 11
12 13 商品名称:
14
15 商品类别:
食品16
办公用品17
服装18
19 商品简介:20
21
22
23
24 25
26 27 28

2.接收处理servlet: shp.java

1 package com.hanqi; 2  3 import java.io.IOException; 4 import javax.servlet.ServletException; 5 import javax.servlet.http.HttpServlet; 6 import javax.servlet.http.HttpServletRequest; 7 import javax.servlet.http.HttpServletResponse; 8  9 /**10  * Servlet implementation class Shp11  */12 public class Shp extends HttpServlet {13     private static final long serialVersionUID = 1L;14        15     /**16      * @see HttpServlet#HttpServlet()17      */18     public Shp() {19         super();20         // TODO Auto-generated constructor stub21     }22 23     /**24      * @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse response)25      */26     protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {27         // TODO Auto-generated method stub28         //指定字符集29         response.setCharacterEncoding("GBK");30         request.setCharacterEncoding("utf-8");31         //获取表单提交信息32         String name = request.getParameter("name");33         String kind = request.getParameter("kind");34         String intr = request.getParameter("intr");35         36 //        //Request字符集转换37 //        String zname = new String(name.getBytes("iso-8859-1"),"utf-8");38 //        String zkind = new String(kind.getBytes("iso-8859-1"),"utf-8");39 //        String zintr = new String(intr.getBytes("iso-8859-1"),"utf-8");40 //        41         response.getWriter().append("商品名称:" + name + "; 商品类别:" + kind + "; 商品简介:" + intr);42         43         //response.getWriter().append("Served at: ").append(request.getContextPath());44     }45 46     /**47      * @see HttpServlet#doPost(HttpServletRequest request, HttpServletResponse response)48      */49     protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {50         // TODO Auto-generated method stub51         doGet(request, response);52 //        response.setCharacterEncoding("gbk");53 //        request.setCharacterEncoding("utf-8");54 //        //获取表单提交信息55 //        String name = request.getParameter("name");56 //        String kind = request.getParameter("kind");57 //        String intr = request.getParameter("intr");58 //        59 //        response.getWriter().append("商品名称:" + name + "; 商品类别:" + kind + "; 商品简介:" + intr);60 61     }62 63 }

 

转载地址:http://jyuax.baihongyu.com/

你可能感兴趣的文章
oracle 管理操作 (转)
查看>>
DEV 等待窗口
查看>>
lombok
查看>>
Dev-FAT-UAT-PRO
查看>>
Android开发学习总结(五)——Android应用目录结构分析(转)
查看>>
[PHP]PHP rpc框架hprose测试
查看>>
Atom 编辑器系列视频课程
查看>>
C#三种定时器
查看>>
范数 L1 L2
查看>>
协同过滤及大数据处理
查看>>
Java8 本地DateTime API
查看>>
[原][osgearth]osgearthviewer读取earth文件,代码解析(earth文件读取的一帧)
查看>>
完美解决html中select的option不能隐藏的问题。
查看>>
推荐5大开源工具,用于开发Kubernetes项目
查看>>
制定2015年的移动开发策略
查看>>
JPA 2.2改进了易用性
查看>>
从蚂蚁金服实践入手,带你深入了解 Service Mesh
查看>>
24周年,“常青树”Delphi发布新版本10.3.1
查看>>
7. 从数据库获取数据- 从零开始学Laravel
查看>>
阿里百川码力APP监控 来了!
查看>>