• [Google Guava]字符串处理:连接器、拆分器、字符匹配器


    一、连接器【Joiner

    二、拆分器【Splitter

    三、字符匹配器【CharMatcher

      

    四、字符集【Charsets】

      Charsets:针对所有Java平台都要保证支持的六种字符集提供了常量引用。尝试使用这些常量,而不是通过名称获取字符集实例。

          try {
                byte[] bytes = test.getBytes("UTf-8");
            } catch (UnsupportedEncodingException e) {
                e.printStackTrace();
            }

    修改成以下的表达方式:

      byte[] bytes = test.getBytes(Charsets.UTF_8);

    其实等同于:

      byte[] bytes = test.getBytes(Charset.forName("UTF-8"));

    五、大小写格式【CaseFormat】

      CaseFormat被用来方便地在各种ASCII大小写规范间转换字符串,比如编程语言的命名规范。CaseFormat支持的格式如下:

    格式 范例
    LOWER_CAMEL lowerCamel
    LOWER_HYPHEN lower-hyphen
    LOWER_UNDERSCORE lower_underscore
    UPPER_CAMEL UpperCamel
    UPPER_UNDERSCORE UPPER_UNDERSCORE
    String testCaseFormat = CaseFormat.UPPER_UNDERSCORE.to(CaseFormat.LOWER_CAMEL, "CONSTANt_NAME");
  • 相关阅读:
    还不知道spring的RestTemplate的妙用吗
    【学习笔记】机器学习之特征工程
    《饥饿的盛世》总结
    我是如何解决java.security.cert.CertPathValidatorException异常的
    《机器学习
    2018年总结
    元类实现ORM
    元类
    python中的装饰器
    python中的闭包
  • 原文地址:https://www.cnblogs.com/parryyang/p/5727037.html
Copyright © 2020-2023  润新知