摘要: String str = "huechsghkshhj"; int len = str.length(); char[] c = new char[len]; int i = 0; for (int index = 0; index < len; index++) { boolean flag = 阅读全文
posted @ 2022-11-09 21:58 Liku007 阅读(19) 评论(0) 推荐(0) 编辑
摘要: Date时间类: Date date=new Date();//获得当前系统的日期和时间 System.out.println(date); long time=date.getTime();//获得毫秒数 System.out.println(time);//自1970年1月1日起以毫秒为单位的时 阅读全文
posted @ 2022-11-09 09:06 Liku007 阅读(12) 评论(0) 推荐(0) 编辑