java 自用工具方法

java 自用工具方法

  • 时间格式转换
    • 1 将时间转换成指定格式的字符串
  • 校验
    • 1.国内手机校验
    • 2.邮箱校验
    • 3.国内身份证校验
    • 4.性别校验
    • 5.字符串组是否包含字符串 【完全包含,不区分大小写】
  • 字符串其它应用
    • 1.字符串指定截取

时间格式转换

1 将时间转换成指定格式的字符串

// date 时间 format 格式 如 yyyy-MM-dd
    public static String dateToString(Date date, String format)
    {
        if (date == null)
        {
            return "";
        }
        Simple

你可能感兴趣的:(java,开发语言)