-
如果try,catch和finally语句块之内没有任何的return语句,则会调用这三个语句块之外的return语句。查看全部
-
String[] arr=str.spilt(" "); System.out.println("差空格分成数组"+Arrays.toString(arr));查看全部
-
多重catch块异常处理需按顺序排列,先子类,后父类。查看全部
-
contains方法的实现原理查看全部
-
异常情况。查看全部
-
Map案例查看全部
-
异常处理 实际应用中的异常的经验和总结查看全部
-
使用Date和SimledateFormat类表示时间: 1.使用foemate()方法将日期转化为指定格式的文本 SimpleDateFormat sdf1 = new SimpleDateFormat("yyyy年MM月dd日 HH时mm分ss秒"); SimpleDateFormat sdf2 = new SimpleDateFormat("yyyy/MM/dd HH:mm"); SimpleDateFormat sdf3 = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); Date now = new Date(); System.out.println(sdf1.format(now)); System.out.println(sdf2.format(now)); System.out.println(sdf3.format(now)); 2.使用parse()方法将文本转化为日期 String d = "2014-6-1 21:05:36"; SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); Date date = sdf.parse(d); System.out.println(date);查看全部
-
没基础的真看不懂。查看全部
-
异常简介 1-2 检查异常 不同于非检查异常RuntimeException,检查异常需要手动捕获并处理查看全部
-
异常简介 1-1 异常都有一个共同的祖先叫做Throwable 一般如果出现Error说明就彻底崩了,基本不可挽回 我们一般接触到的是Exception Exception异常分为非检查异常和检查异常 截图为非检查异常查看全部
-
案例2查看全部
-
使用Date和SimledateFormat类表示时间: 1.使用format()方法将日期转化为指定格式的文本 SimpleDateFormat sdf1 = new SimpleDateFormat("yyyy年MM月dd日 HH时mm分ss秒"); SimpleDateFormat sdf2 = new SimpleDateFormat("yyyy/MM/dd HH:mm"); SimpleDateFormat sdf3 = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); Date now = new Date(); System.out.println(sdf1.format(now)); System.out.println(sdf2.format(now)); System.out.println(sdf3.format(now)); 2.使用parse()方法将文本转化为日期 String d = "2014-6-1 21:05:36"; SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); Date date = sdf.parse(d); System.out.println(date); 1.导入所需的包 import java.util.Date; import java.text.SimpleDateFormat; 2. 使用 format() 方法将日期转换为指定格式的文本 代码中的 “yyyy-MM-dd HH:mm:ss” 为预定义字符串, yyyy 表示四位年, MM 表示两位月份, dd 表示两位日期, HH 表示小时(使用24小时制), mm 表示分钟, ss 表示秒,这样就指定了转换的目标格式,最后调用 format() 方法将时间转换为指定的格式的字符串。 3.使用 parse() 方法将文本转换为日期 4.调用 SimpleDateFormat 对象的 parse() 方法时可能会出现转换异常,即 ParseException ,因此需要进行异常处理查看全部
-
为遍历List中的元素,先取得列表的长度值。查看全部
-
异常经验总结查看全部
举报
0/150
提交
取消