当前位置:   article > 正文

如何得到String对象中的文本行数_cstring 怎么知道 字符串行数

cstring 怎么知道 字符串行数

今天遇到一个好奇怪的需求,如何得到String对象中的文本行数。。。

public class StringLineNumber {

    public static void main(String args[]) throws Exception {

        //System.out.println(getLineNumber("adb\ncdf"));
        System.out.println(getLineNumberByIo("adb\ncdf"));
    }

    /**   得到字符串中的行数  使用io*/
    public static long getLineNumberByIo(String target) throws IOException {

        LineNumberReader lnr = new LineNumberReader(new CharArrayReader(target.toCharArray()));
        lnr.skip(Long.MAX_VALUE);
        //System.out.println(lnr.getLineNumber() + 1);
        lnr.close();
        return lnr.getLineNumber() + 1;
    }

    /**   得到字符串中的行数 */
    //public static long getLineNumber(String target) throws IOException {
    //    return target.trim().split("\n").length;
    //}
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/333922
推荐阅读
相关标签
  

闽ICP备14008679号