java学习笔记第19章第21章.ppt
《java学习笔记第19章第21章.ppt》由会员分享,可在线阅读,更多相关《java学习笔记第19章第21章.ppt(19页珍藏版)》请在三一办公上搜索。
1、第21章,Java SE6新功能简介Java SE6基本新功能Apache Derby、JDBC 4.0,java.lang套件,在Java SE 6中,String类别上新增了isEmpty()方法,String str=;if(str.isEmpty(),java.util套件,在Java SE 6中,Arrays类别新增了copyOf()方法,int arr1=1,2,3,4,5;int arr2=Arrays.copyOf(arr1,arr1.length);for(int i=0;i arr2.length;i+)System.out.print(arr2i+);System.out
2、.println();,int arr1=1,2,3,4,5;int arr2=Arrays.copyOf(arr1,10);for(int i=0;i arr2.length;i+)System.out.print(arr2i+);System.out.println();,java.util套件,copyOfRange()方法binarySearch()方法,int arr1=1,2,3,4,5;int arr2=Arrays.copyOf(arr1,1,4);,int arr1=10,20,30,40,50,60,70,80,90;int result=Arrays.binarySear
3、ch(arr1,6,9,85);if(result-1)System.out.printf(索引%d处找到数据%n,result);else System.out.printf(插入点%d%n,(result+1)*-1);,java.util套件,在Java SE 6中,您可以直接使用getDisplayNames()或getDisplayName()方法取得区域化的日期格式显示,Calendar rightNow=Calendar.getInstance();Locale locale=Locale.getDefault();System.out.println(现在时间是:);Syste
4、m.out.printf(%s:%d%n,rightNow.getDisplayName(ERA,LONG,locale),rightNow.get(YEAR);System.out.println(rightNow.getDisplayName(MONTH,LONG,locale);System.out.printf(%d日%n,rightNow.get(DAY_OF_MONTH);System.out.println(rightNow.getDisplayName(DAY_OF_WEEK,LONG,locale);,java.io套件,使用System类别上新增的console()方法使用
5、Console物件的readLine()方法,System.out.print(输入名称:);String name=System.console().readLine();System.out.print(输入密码:);char passwd=System.console().readPassword();String password=new String(passwd);if(caterpillar.equals(name),java.io套件,String name=console.readLine(%s,输入名称);char passwd=console.readPassword(%
6、s,输入密码);String password=new String(passwd);if(caterpillar.equals(name),java.io套件,在Java SE6中,对于File类别新增了几个方法,File roots=File.listRoots();for(File root:roots)System.out.printf(%s总容量%d,可用容量%d%n,root.getPath(),root.getTotalSpace(),root.getUsableSpace();,java.awt套件,指定启动屏幕的图片manifest档案的写法,java-splash:cate
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- java 学习 笔记 19 21
链接地址:https://www.31ppt.com/p-6509752.html