A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© GKAirzzzzz 中级黑马   /  2017-2-15 23:21  /  770 人查看  /  2 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

一、正则表达式:
                校验手机号:String regex = "1[3578]\\d{9}"
                校验QQ号:  String regex = "[1-9]\\d{4,14}";
        二、Date类的使用:
                成员方法
                * public long getTime():获取毫秒值
                * public void setTime(long time):通过毫秒值设置时间
        三、SimpleDateFormat类的使用:
                成员方法:
                * public final String format(Date date):将日期对象转成字符串
                * public Date parse(String source):         将字符串转成日期对象
                常用的格式化日期格式:
                        yyyy年MM月dd日 HH时mm分ss秒
        四、Calendar类的使用:
                成员方法
                * public static Calendar getInstance():获取Calendar对象
                * public int get(int field):通过字段获取内容
                * public void add(int field,int amount):偏移时间
                * public final void set(int year,int month,int date):设置指定字段的时间

2 个回复

正序浏览
11111111111111111111
回复 使用道具 举报
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马