美文网首页我爱编程
Java中为什么尽量使用apache StringUtils.s

Java中为什么尽量使用apache StringUtils.s

作者: 李蕊江 | 来源:发表于2017-06-26 09:58 被阅读0次

    使用apache StringUtils.split替代String.split
    如果你对下面几个结果有疑惑的话,建议使用apache commons包的StringUtils.split来替代。
    <code>
    String[] strs ="".split(",");
    <code>

    结果是strs.length=1,strs[0]=""

    <code>
    String[] strs =",".split(",");
    <code>

    结果是strs.length=0

    <code>
    String[] strs =",1,".split(",");
    <code>

    结果是strs.length=2,strs[0]="",strs[1]="1"
    String.split使用起来潜规则比较多,即使自己清楚,别人也未必一眼就看明白。为了不引起误会,建议使用StringUtils.split来替代,它对空字符串""会进行过滤。
    <code>
    String[] strs = StringUtils.split(",1,,2,",",");
    <code>

    结果是strs.length=2,strs[0]="1",strs[1]="2"

    相关文章

      网友评论

        本文标题:Java中为什么尽量使用apache StringUtils.s

        本文链接:https://www.haomeiwen.com/subject/wspdcxtx.html