zoukankan      html  css  js  c++  java
  • beanutils中类型转换

    public void doPost(HttpServletRequest request, HttpServletResponse response)
                throws ServletException, IOException {
            
            MyBean myBean=new MyBean();
            HashMap map=new HashMap();
            Enumeration<String> enumeration=request.getParameterNames();
            while (enumeration.hasMoreElements()) {
                String name = (String) enumeration.nextElement();
                map.put(name, request.getParameterValues(name));
            }
            try {
                BeanUtils.populate(myBean, map);
            } catch (IllegalAccessException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            } catch (InvocationTargetException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }
            System.out.println(map);
        }

    index.jsp

    <form action="bean" method="post">
            <input type="text" value="张三" name="name" >
            <input type="text" value="李四" name="name" >
            <input type="submit" value="提交" >
        </form>

  • 相关阅读:
    c++ 队列
    17:特殊类成员:函数指针5
    c++ deque 双端队列
    18:字符串-char型字符串
    c++ 16 this 和 继承 及继承机制中的构造函数 与 析构函数
    c++ string char* const char*
    c++ 小片段
    google protobuf 使用示例
    hibernate-cache
    hibernate-criteria查询(二)
  • 原文地址:https://www.cnblogs.com/danmao/p/4053360.html
Copyright © 2011-2022 走看看