摘要:
String str = "huechsghkshhj"; int len = str.length(); char[] c = new char[len]; int i = 0; for (int index = 0; index < len; index++) { boolean flag = 阅读全文
摘要:
Date时间类: Date date=new Date();//获得当前系统的日期和时间 System.out.println(date); long time=date.getTime();//获得毫秒数 System.out.println(time);//自1970年1月1日起以毫秒为单位的时 阅读全文