时 间 记 忆
<<  < 2018 - >  >>
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 29 30 31

最 新 评 论

最 新 日 志

最 新 留 言

搜 索

用 户 登 录

我 的 相 册

我 的 圈 子

我 的 好 友

友 情 连 接


 
 
 
Java 后台获取页面复选框选中的值
[ 2017-5-5 8:47:00 | By: 我家超超会发光 ]
 
        // 处理复选
        // 既往史 - 肿瘤
        String[] JWS_ZL = this.getParameterValues("queInfo.JWS_ZL");
        // 家族史 - 家族病史
        String[] JZS_JZBS = this.getParameterValues("queInfo.JZS_JZBS");
        // 家族史 - 肿瘤
        String[] JZS_ZL = this.getParameterValues("queInfo.JZS_ZL");
        if(JWS_ZL.length > 0)
        queInfo.setJWS_ZL(StrUtils.join(JWS_ZL));
        if(JZS_JZBS.length > 0)
        queInfo.setJWS_ZL(StrUtils.join(JZS_JZBS));
        if(JZS_ZL.length > 0)
        queInfo.setJWS_ZL(StrUtils.join(JZS_ZL));

       public static String join(String[] str) {
           return join(str, ",");
       }

    public static String join(String[] str, String join) {
        if (str == null || join == null) {
            return "";
        }
        String rtnStr = "";
        for (int i = 0; i < str.length; i++) {
            rtnStr += join + str[i];
        }
        if (rtnStr.indexOf(join) != -1) {
            rtnStr = rtnStr.substring(1);
        }
        return rtnStr;
    }
 
 
发表评论:
 
天涯博客 天涯博客
天涯博客欢迎您!