时 间 记 忆
<<  < 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

最 新 评 论

最 新 日 志

最 新 留 言

搜 索

用 户 登 录

我 的 相 册

我 的 圈 子

我 的 好 友

友 情 连 接


 
 
 
String数组或者集合添加单引号
[ 2017-7-12 13:37:00 | By: 我家超超会发光 ]
 
/**
     * String数组添加单引号
     *
     * @param str
     * @return
     */
    public static String strsAddMarks(String[] str) {
        String value = "";
        if (UtilAPI.isNull(str) || str.length == 0) {
            value = "'NOT_SELECT'";
        }
        for (String s : str) {
            if (!UtilAPI.isNull(s)) {
                if (value.length() > 0) {
                    value += ",";
                }
                value += "'" + s + "'";
            }
        }
        return value;
    }

    /**
     * String集合添加单引号
     *
     * @param str
     * @return
     */
    public static String strsAddMarks(List<String> listStr) {
        String value = "";
        if (UtilAPI.isListNull(listStr)) {
            value = "'NOT_SELECT'";
        }
        for (String s : listStr) {
            if (!UtilAPI.isNull(s)) {
                if (value.length() > 0) {
                    value += ",";
                }
                value += "'" + s + "'";
            }
        }
        return value;
    }
 
 
  • 标签:数组 集合 单引号 
  • 发表评论:
     
    天涯博客 天涯博客
    天涯博客欢迎您!