Java基础学习记录03

阅读: 评论:0

Java基础学习记录03

Java基础学习记录03

java常用类
String类
String类的不可变性
/*
String:字符串,使用一对""引起来表示。
1.String声明为final的,不可被继承
2.String实现了Serializable接口:表示字符串是支持序列化的。实现了Comparable接口:表示String可以比较大小
3.String内部定义了final char[] value用于存储字符串数据
4.String:代表不可变的字符序列。简称:不可变性。体现:1.当对字符串重新赋值时,需要重写指定内存区域赋值,不能使用原有的value进行赋值。2. 当对现有的字符串进行连接操作时,也需要重新指定内存区域赋值,不能使用原有的value进行赋值。3. 当调用String的replace()方法修改指定字符或字符串时,也需要重新指定内存区域赋值,不能使用原有的value进行赋值。
5.通过字面量的方式(区别于new)给一个字符串赋值,此时的字符串值声明在字符串常量池中。
6.字符串常量池中是不会存储相同内容的字符串的。*/
@Test
public void test1(){String s1 = "abc";//字面量的定义方式String s2 = "abc";s1 = "hello";System.out.println(s1 == s2);//比较s1和s2的地址值System.out.println(s1);//helloSystem.out.println(s2);//abcSystem.out.println("*****************");String s3 = "abc";s3 += "def";System.out.println(s3);//abcdefSystem.out.println(s2);System.out.println("*****************");String s4 = "abc";String s5 = s4.replace('a', 'm');System.out.println(s4);//abcSystem.out.println(s5);//mbc}

String不同实例化方式的对比
/*
String的实例化方式:
方式一:通过字面量定义的方式
方式二:通过new + 构造器的方式面试题:String s = new String("abc");方式创建对象,在内存中创建了几个对象?两个:一个是堆空间中new结构,另一个是char[]对应的常量池中的数据:"abc"*/
@Test
public void test2(){//通过字面量定义的方式:此时的s1和s2的数据javaEE声明在方法区中的字符串常量池中。String s1 = "javaEE";String s2 = "javaEE";//通过new + 构造器的方式:此时的s3和s4保存的地址值,是数据在堆空间中开辟空间以后对应的地址值。String s3 = new String("javaEE");String s4 = new String("javaEE");System.out.println(s1 == s2);//trueSystem.out.println(s1 == s3);//falseSystem.out.println(s1 == s4);//falseSystem.out.println(s3 == s4);//falseSystem.out.println("***********************");Person p1 = new Person("Tom",12);Person p2 = new Person("Tom",12);System.out.println(p1.name.equals(p2.name));//trueSystem.out.println(p1.name == p2.name);//truep1.name = "Jerry";System.out.println(p2.name);//Tom
}

    /*结论:1.常量与常量的拼接结果在常量池。且常量池中不会存在相同内容的常量。2.只要其中有一个是变量,结果就在堆中。3.如果拼接的结果调用intern()方法,返回值就在常量池中*/@Testpublic void test4(){String s1 = "javaEEhadoop";String s2 = "javaEE";String s3 = s2 + "hadoop";System.out.println(s1 == s3);//falsefinal String s4 = "javaEE";//s4:常量String s5 = s4 + "hadoop";System.out.println(s1 == s5);//true}@Test
public void test3(){String s1 = "javaEE";String s2 = "hadoop";String s3 = "javaEEhadoop";String s4 = "javaEE" + "hadoop";String s5 = s1 + "hadoop";String s6 = "javaEE" + s2;String s7 = s1 + s2;System.out.println(s3 == s4);//trueSystem.out.println(s3 == s5);//falseSystem.out.println(s3 == s6);//falseSystem.out.println(s3 == s7);//falseSystem.out.println(s5 == s6);//falseSystem.out.println(s5 == s7);//falseSystem.out.println(s6 == s7);//falseString s8 = s6.intern();//返回值得到的s8使用的常量值中已经存在的“javaEEhadoop”System.out.println(s3 == s8);//true}

String的常用方法
       /*
int length():返回字符串的长度: return value.length
char charAt(int index): 返回某索引处的字符return value[index]
boolean isEmpty():判断是否是空字符串:return value.length == 0
String toLowerCase():使用默认语言环境,将 String 中的所有字符转换为小写
String toUpperCase():使用默认语言环境,将 String 中的所有字符转换为大写
String trim():返回字符串的副本,忽略前导空白和尾部空白*/@Testpublic void test1() {String s1 = "HelloWorld";System.out.println(s1.length());System.out.println(s1.charAt(0));System.out.println(s1.charAt(9));
//        System.out.println(s1.charAt(10));
//        s1 = "";System.out.println(s1.isEmpty());String s2 = s1.toLowerCase();System.out.println(s1);//s1不可变的,仍然为原来的字符串System.out.println(s2);//改成小写以后的字符串String s3 = "   he  llo   world   ";String s4 = s3.trim();System.out.println("-----" + s3 + "-----");System.out.println("-----" + s4 + "-----");}
    /*
boolean equals(Object obj):比较字符串的内容是否相同
boolean equalsIgnoreCase(String anotherString):与equals方法类似,忽略大小写
String concat(String str):将指定字符串连接到此字符串的结尾。 等价于用“+”
int compareTo(String anotherString):比较两个字符串的大小
String substring(int beginIndex):返回一个新的字符串,它是此字符串的从beginIndex开始截取到最后的一个子字符串。
String substring(int beginIndex, int endIndex) :返回一个新字符串,它是此字符串从beginIndex开始截取到endIndex(不包含)的一个子字符串。*/@Testpublic void test2() {String s1 = "HelloWorld";String s2 = "helloworld";System.out.println(s1.equals(s2));System.out.println(s1.equalsIgnoreCase(s2));String s3 = "abc";String s4 = s3.concat("def");System.out.println(s4);String s5 = "abc";String s6 = new String("abe");System.out.println(s5pareTo(s6));//涉及到字符串排序String s7 = "北京尚硅谷教育";String s8 = s7.substring(2);System.out.println(s7);System.out.println(s8);String s9 = s7.substring(2, 5);System.out.println(s9);}
    /*
boolean endsWith(String suffix):测试此字符串是否以指定的后缀结束
boolean startsWith(String prefix):测试此字符串是否以指定的前缀开始
boolean startsWith(String prefix, int toffset):测试此字符串从指定索引开始的子字符串是否以指定前缀开始boolean contains(CharSequence s):当且仅当此字符串包含指定的 char 值序列时,返回 true
int indexOf(String str):返回指定子字符串在此字符串中第一次出现处的索引
int indexOf(String str, int fromIndex):返回指定子字符串在此字符串中第一次出现处的索引,从指定的索引开始
int lastIndexOf(String str):返回指定子字符串在此字符串中最右边出现处的索引
int lastIndexOf(String str, int fromIndex):返回指定子字符串在此字符串中最后一次出现处的索引,从指定的索引开始反向搜索注:indexOf和lastIndexOf方法如果未找到都是返回-1*/@Testpublic void test3(){String str1 = "hellowworld";boolean b1 = dsWith("rld");System.out.println(b1);boolean b2 = str1.startsWith("He");System.out.println(b2);boolean b3 = str1.startsWith("ll",2);System.out.println(b3);String str2 = "wor";System.out.ains(str2));System.out.println(str1.indexOf("lol"));System.out.println(str1.indexOf("lo",5));String str3 = "hellorworld";System.out.println(str3.lastIndexOf("or"));System.out.println(str3.lastIndexOf("or",6));//什么情况下,indexOf(str)和lastIndexOf(str)返回值相同?//情况一:存在唯一的一个str。情况二:不存在str}
    /*
替换:
String replace(char oldChar, char newChar):返回一个新的字符串,它是通过用 newChar 替换此字符串中出现的所有 oldChar 得到的。
String replace(CharSequence target, CharSequence replacement):使用指定的字面值替换序列替换此字符串所有匹配字面值目标序列的子字符串。
String replaceAll(String regex, String replacement):使用给定的 replacement 替换此字符串所有匹配给定的正则表达式的子字符串。
String replaceFirst(String regex, String replacement):使用给定的 replacement 替换此字符串匹配给定的正则表达式的第一个子字符串。
匹配:
boolean matches(String regex):告知此字符串是否匹配给定的正则表达式。
切片:
String[] split(String regex):根据给定正则表达式的匹配拆分此字符串。
String[] split(String regex, int limit):根据匹配给定的正则表达式来拆分此字符串,最多不超过limit个,如果超过了,剩下的全部都放到最后一个元素中。*/@Testpublic void test4(){String str1 = "北京尚硅谷教育北京";String str2 = place('北', '东');System.out.println(str1);System.out.println(str2);String str3 = place("北京", "上海");System.out.println(str3);System.out.println("*************************");String str = "12hello34world5java7891mysql456";//把字符串中的数字替换成,,如果结果中开头和结尾有,的话去掉String string = placeAll("\d+", ",").replaceAll("^,|,$", "");System.out.println(string);System.out.println("*************************");str = "12345";//判断str字符串中是否全部有数字组成,即有1-n个数字组成boolean matches = str.matches("\d+");System.out.println(matches);String tel = "0571-4534289";//判断这是否是一个杭州的固定电话boolean result = tel.matches("0571-\d{7,8}");System.out.println(result);System.out.println("*************************");str = "hello|world|java";String[] strs = str.split("\|");for (int i = 0; i < strs.length; i++) {System.out.println(strs[i]);}System.out.println();str2 = "hello.world.java";String[] strs2 = str2.split("\.");for (int i = 0; i < strs2.length; i++) {System.out.println(strs2[i]);}}
String与基本数据类型、包装类之间的转换
    /*复习:String 与基本数据类型、包装类之间的转换。String --> 基本数据类型、包装类:调用包装类的静态方法:parseXxx(str)基本数据类型、包装类 --> String:调用String重载的valueOf(xxx)*/@Testpublic void test1(){String str1 = "123";
//        int num = (int)str1;//错误的int num = Integer.parseInt(str1);String str2 = String.valueOf(num);//"123"String str3 = num + "";System.out.println(str1 == str3);//false}
String与char[]之间的转换
/*
String 与 char[]之间的转换String --> char[]:调用String的toCharArray()
char[] --> String:调用String的构造器*/
@Test
public void test2(){String str1 = "abc123";  //题目: a21cb3char[] charArray = CharArray();for (int i = 0; i < charArray.length; i++) {System.out.println(charArray[i]);}char[] arr = new char[]{'h','e','l','l','o'};String str2 = new String(arr);System.out.println(str2);
}
String与byte[]之间的转换
/*
String 与 byte[]之间的转换
编码:String --> byte[]:调用String的getBytes()
解码:byte[] --> String:调用String的构造器编码:字符串 -->字节  (看得懂 --->看不懂的二进制数据)
解码:编码的逆过程,字节 --> 字符串 (看不懂的二进制数据 ---> 看得懂)说明:解码时,要求解码使用的字符集必须与编码时使用的字符集一致,否则会出现乱码。*/
@Test
public void test3() throws UnsupportedEncodingException {String str1 = "abc123中国";byte[] bytes = Bytes();//使用默认的字符集,进行编码。System.out.String(bytes));byte[] gbks = Bytes("gbk");//使用gbk字符集进行编码。System.out.String(gbks));System.out.println("******************");String str2 = new String(bytes);//使用默认的字符集,进行解码。System.out.println(str2);String str3 = new String(gbks);System.out.println(str3);//出现乱码。原因:编码集和解码集不一致!String str4 = new String(gbks, "gbk");System.out.println(str4);//没有出现乱码。原因:编码集和解码集一致!}
StringBuffer和StringBuilder类
String、StringBuffer、StringBuilder三者的异同
/*
String、StringBuffer、StringBuilder三者的异同?
String:不可变的字符序列;底层使用char[]存储
StringBuffer:可变的字符序列;线程安全的,效率低;底层使用char[]存储
StringBuilder:可变的字符序列;jdk5.0新增的,线程不安全的,效率高;底层使用char[]存储源码分析:
String str = new String();//char[] value = new char[0];
String str1 = new String("abc");//char[] value = new char[]{'a','b','c'};StringBuffer sb1 = new StringBuffer();//char[] value = new char[16];底层创建了一个长度是16的数组。
System.out.println(sb1.length());//
sb1.append('a');//value[0] = 'a';
sb1.append('b');//value[1] = 'b';StringBuffer sb2 = new StringBuffer("abc");//char[] value = new char["abc".length() + 16];//问题1. System.out.println(sb2.length());//3
//问题2. 扩容问题:如果要添加的数据底层数组盛不下了,那就需要扩容底层的数组。默认情况下,扩容为原来容量的2倍 + 2,同时将原有数组中的元素复制到新的数组中。指导意义:开发中建议大家使用:StringBuffer(int capacity) 或 StringBuilder(int capacity)*/
@Test
public void test1(){StringBuffer sb1 = new StringBuffer("abc");sb1.setCharAt(0,'m');System.out.println(sb1);StringBuffer sb2 = new StringBuffer();System.out.println(sb2.length());//0
}
StringBuffer的常用方法
    /*StringBuffer的常用方法:
StringBuffer append(xxx):提供了很多的append()方法,用于进行字符串拼接
StringBuffer delete(int start,int end):删除指定位置的内容
StringBuffer replace(int start, int end, String str):把[start,end)位置替换为str
StringBuffer insert(int offset, xxx):在指定位置插入xxx
StringBuffer reverse() :把当前字符序列逆转
public int indexOf(String str)
public String substring(int start,int end):返回一个从start开始到end索引结束的左闭右开区间的子字符串
public int length()
public char charAt(int n )
public void setCharAt(int n ,char ch)总结:增:append(xxx)删:delete(int start,int end)改:setCharAt(int n ,char ch) / replace(int start, int end, String str)查:charAt(int n )插:insert(int offset, xxx)长度:length();*遍历:for() + charAt() / toString()*/@Testpublic void test2(){StringBuffer s1 = new StringBuffer("abc");s1.append(1);s1.append('1');System.out.println(s1);
//        s1.delete(2,4);
//        s1.replace(2,4,"hello");
//        s1.insert(2,false);
//        s1.reverse();String s2 = s1.substring(1, 3);System.out.println(s1);System.out.println(s1.length());System.out.println(s2);}
String、StringBuffer、StringBuilder三者的效率
/*
对比String、StringBuffer、StringBuilder三者的效率:
从高到低排列:StringBuilder > StringBuffer > String*/
@Test
public void test3(){//初始设置long startTime = 0L;long endTime = 0L;String text = "";StringBuffer buffer = new StringBuffer("");StringBuilder builder = new StringBuilder("");//开始对比startTime = System.currentTimeMillis();for (int i = 0; i < 20000; i++) {buffer.append(String.valueOf(i));}endTime = System.currentTimeMillis();System.out.println("StringBuffer的执行时间:" + (endTime - startTime));startTime = System.currentTimeMillis();for (int i = 0; i < 20000; i++) {builder.append(String.valueOf(i));}endTime = System.currentTimeMillis();System.out.println("StringBuilder的执行时间:" + (endTime - startTime));startTime = System.currentTimeMillis();for (int i = 0; i < 20000; i++) {text = text + i;}endTime = System.currentTimeMillis();System.out.println("String的执行时间:" + (endTime - startTime));}
JDK8之前日期时间API
System类中currentTimeMillis()
//1.System类中的currentTimeMillis()
@Test
public void test1(){long time = System.currentTimeMillis();//返回当前时间与1970年1月1日0时0分0秒之间以毫秒为单位的时间差。//称为时间戳System.out.println(time);
}
java.util.Date和子类java.sql.Date
package com.atguigu.java;import org.junit.Test;import java.util.Date;/*** JDK 8之前日期和时间的API测试** @author shkstart* @create 2019 下午 4:30*/
public class DateTimeTest {/*java.util.Date类|---java.sql.Date类1.两个构造器的使用>构造器一:Date():创建一个对应当前时间的Date对象>构造器二:创建指定毫秒数的Date对象2.两个方法的使用>toString():显示当前的年、月、日、时、分、秒>getTime():获取当前Date对象对应的毫秒数。(时间戳)3. java.sql.Date对应着数据库中的日期类型的变量>如何实例化>如何将java.util.Date对象转换为java.sql.Date对象*/@Testpublic void test2(){//构造器一:Date():创建一个对应当前时间的Date对象Date date1 = new Date();System.out.String());//Sat Feb 16 16:35:31 GMT+08:00 2019System.out.Time());//1550306204104//构造器二:创建指定毫秒数的Date对象Date date2 = new Date(155030620410L);System.out.String());//创建java.sql.Date对象java.sql.Date date3 = new java.sql.Date(35235325345L);System.out.println(date3);//1971-02-13//如何将java.util.Date对象转换为java.sql.Date对象//情况一:
//        Date date4 = new java.sql.Date(2343243242323L);
//        java.sql.Date date5 = (java.sql.Date) date4;//情况二:Date date6 = new Date();java.sql.Date date7 = new java.sql.Time());}
}
SimpleDateFormat
/*SimpleDateFormat的使用:SimpleDateFormat对日期Date类的格式化和解析1.两个操作:1.1 格式化:日期 --->字符串1.2 解析:格式化的逆过程,字符串 ---> 日期2.SimpleDateFormat的实例化*/@Testpublic void testSimpleDateFormat() throws ParseException {//实例化SimpleDateFormat:使用默认的构造器SimpleDateFormat sdf = new SimpleDateFormat();//格式化:日期 --->字符串Date date = new Date();System.out.println(date);String format = sdf.format(date);System.out.println(format);//解析:格式化的逆过程,字符串 ---> 日期String str = "19-12-18 上午11:43";Date date1 = sdf.parse(str);System.out.println(date1);//*************按照指定的方式格式化和解析:调用带参的构造器*****************
//        SimpleDateFormat sdf1 = new SimpleDateFormat("yyyyy.MMMMM.dd GGG hh:mm aaa");SimpleDateFormat sdf1 = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss");//格式化String format1 = sdf1.format(date);System.out.println(format1);//2019-02-18 11:48:27//解析:要求字符串必须是符合SimpleDateFormat识别的格式(通过构造器参数体现),//否则,抛异常Date date2 = sdf1.parse("2020-02-18 11:48:27");System.out.println(date2);}
Calendar
 /*Calendar日历类(抽象类)的使用*/@Testpublic void testCalendar(){//1.实例化//方式一:创建其子类(GregorianCalendar)的对象//方式二:调用其静态方法getInstance()Calendar calendar = Instance();
//        System.out.Class());//2.常用方法//get()int days = (Calendar.DAY_OF_MONTH);System.out.println(days);System.out.(Calendar.DAY_OF_YEAR));//set()//calendar可变性calendar.set(Calendar.DAY_OF_MONTH,22);days = (Calendar.DAY_OF_MONTH);System.out.println(days);//add()calendar.add(Calendar.DAY_OF_MONTH,-3);days = (Calendar.DAY_OF_MONTH);System.out.println(days);//getTime():日历类---> DateDate date = Time();System.out.println(date);//setTime():Date ---> 日历类Date date1 = new Date();calendar.setTime(date1);days = (Calendar.DAY_OF_MONTH);System.out.println(days);}

JDK8中新日期时间API
CalendarLocalDate、LocalTime、LocalDateTime 的使用
package com.atguigu.java;import org.junit.Test;import java.time.*;
import java.time.format.DateTimeFormatter;
import java.time.format.FormatStyle;
import poral.TemporalAccessor;
import java.util.Date;/*** jdk 8中日期时间API的测试** @author shkstart* @create 2019 下午 2:44*/
public class JDK8DateTimeTest {@Testpublic void testDate(){//偏移量Date date1 = new Date(2020 - 1900,9 - 1,8);System.out.println(date1);//Tue Sep 08 00:00:00 GMT+08:00 2020}/*LocalDate、LocalTime、LocalDateTime 的使用说明:1.LocalDateTime相较于LocalDate、LocalTime,使用频率要高2.类似于Calendar*/@Testpublic void test1(){//now():获取当前的日期、时间、日期+时间LocalDate localDate = w();LocalTime localTime = w();LocalDateTime localDateTime = w();System.out.println(localDate);System.out.println(localTime);System.out.println(localDateTime);//of():设置指定的年、月、日、时、分、秒。没有偏移量LocalDateTime localDateTime1 = LocalDateTime.of(2020, 10, 6, 13, 23, 43);System.out.println(localDateTime1);//getXxx():获取相关的属性System.out.DayOfMonth());System.out.DayOfWeek());System.out.Month());System.out.MonthValue());System.out.Minute());//体现不可变性//withXxx():设置相关的属性LocalDate localDate1 = localDate.withDayOfMonth(22);System.out.println(localDate);System.out.println(localDate1);LocalDateTime localDateTime2 = localDateTime.withHour(4);System.out.println(localDateTime);System.out.println(localDateTime2);//不可变性LocalDateTime localDateTime3 = localDateTime.plusMonths(3);System.out.println(localDateTime);System.out.println(localDateTime3);LocalDateTime localDateTime4 = localDateTime.minusDays(6);System.out.println(localDateTime);System.out.println(localDateTime4);}/*Instant的使用类似于 java.util.Date类*/@Testpublic void test2(){//now():获取本初子午线对应的标准时间Instant instant = w();System.out.println(instant);//2019-02-18T07:29:41.719Z//添加时间的偏移量OffsetDateTime offsetDateTime = instant.atOffset(ZoneOffset.ofHours(8));System.out.println(offsetDateTime);//2019-02-18T15:32:50.611+08:00//toEpochMilli():获取自1970年1月1日0时0分0秒(UTC)开始的毫秒数  ---> Date类的getTime()long milli = EpochMilli();System.out.println(milli);//ofEpochMilli():通过给定的毫秒数,获取Instant实例  -->Date(long millis)Instant instant1 = Instant.ofEpochMilli(1550475314878L);System.out.println(instant1);}/*DateTimeFormatter:格式化或解析日期、时间类似于SimpleDateFormat*/@Testpublic void test3(){
//        方式一:预定义的标准格式。如:ISO_LOCAL_DATE_TIME;ISO_LOCAL_DATE;ISO_LOCAL_TIMEDateTimeFormatter formatter = DateTimeFormatter.ISO_LOCAL_DATE_TIME;//格式化:日期-->字符串LocalDateTime localDateTime = w();String str1 = formatter.format(localDateTime);System.out.println(localDateTime);System.out.println(str1);//2019-02-18T15:42:18.797//解析:字符串 -->日期TemporalAccessor parse = formatter.parse("2019-02-18T15:42:18.797");System.out.println(parse);//        方式二:
//        本地化相关的格式。如:ofLocalizedDateTime()
//        FormatStyle.LONG / FormatStyle.MEDIUM / FormatStyle.SHORT :适用于LocalDateTimeDateTimeFormatter formatter1 = DateTimeFormatter.ofLocalizedDateTime(FormatStyle.LONG);//格式化String str2 = formatter1.format(localDateTime);System.out.println(str2);//2019年2月18日 下午03时47分16秒//      本地化相关的格式。如:ofLocalizedDate()
//      FormatStyle.FULL / FormatStyle.LONG / FormatStyle.MEDIUM / FormatStyle.SHORT : 适用于LocalDateDateTimeFormatter formatter2 = DateTimeFormatter.ofLocalizedDate(FormatStyle.MEDIUM);//格式化String str3 = formatter2.w());System.out.println(str3);//2019-2-18//       重点: 方式三:自定义的格式。如:ofPattern(“yyyy-MM-dd hh:mm:ss”)DateTimeFormatter formatter3 = DateTimeFormatter.ofPattern("yyyy-MM-dd hh:mm:ss");//格式化String str4 = formatter3.w());System.out.println(str4);//2019-02-18 03:52:09//解析TemporalAccessor accessor = formatter3.parse("2019-02-18 03:52:09");System.out.println(accessor);}}
Instant的使用
/*
Instant的使用
类似于 java.util.Date类*/
@Test
public void test2(){//now():获取本初子午线对应的标准时间Instant instant = w();System.out.println(instant);//2019-02-18T07:29:41.719Z//添加时间的偏移量OffsetDateTime offsetDateTime = instant.atOffset(ZoneOffset.ofHours(8));System.out.println(offsetDateTime);//2019-02-18T15:32:50.611+08:00//toEpochMilli():获取自1970年1月1日0时0分0秒(UTC)开始的毫秒数  ---> Date类的getTime()long milli = EpochMilli();System.out.println(milli);//ofEpochMilli():通过给定的毫秒数,获取Instant实例  -->Date(long millis)Instant instant1 = Instant.ofEpochMilli(1550475314878L);System.out.println(instant1);
}
DateTimeFormatter:格式化或解析日期、时间
    /*DateTimeFormatter:格式化或解析日期、时间类似于SimpleDateFormat*/@Testpublic void test3(){
//        方式一:预定义的标准格式。如:ISO_LOCAL_DATE_TIME;ISO_LOCAL_DATE;ISO_LOCAL_TIMEDateTimeFormatter formatter = DateTimeFormatter.ISO_LOCAL_DATE_TIME;//格式化:日期-->字符串LocalDateTime localDateTime = w();String str1 = formatter.format(localDateTime);System.out.println(localDateTime);System.out.println(str1);//2019-02-18T15:42:18.797//解析:字符串 -->日期TemporalAccessor parse = formatter.parse("2019-02-18T15:42:18.797");System.out.println(parse);//        方式二:
//        本地化相关的格式。如:ofLocalizedDateTime()
//        FormatStyle.LONG / FormatStyle.MEDIUM / FormatStyle.SHORT :适用于LocalDateTimeDateTimeFormatter formatter1 = DateTimeFormatter.ofLocalizedDateTime(FormatStyle.LONG);//格式化String str2 = formatter1.format(localDateTime);System.out.println(str2);//2019年2月18日 下午03时47分16秒//      本地化相关的格式。如:ofLocalizedDate()
//      FormatStyle.FULL / FormatStyle.LONG / FormatStyle.MEDIUM / FormatStyle.SHORT : 适用于LocalDateDateTimeFormatter formatter2 = DateTimeFormatter.ofLocalizedDate(FormatStyle.MEDIUM);//格式化String str3 = formatter2.w());System.out.println(str3);//2019-2-18//       重点: 方式三:自定义的格式。如:ofPattern(“yyyy-MM-dd hh:mm:ss”)DateTimeFormatter formatter3 = DateTimeFormatter.ofPattern("yyyy-MM-dd hh:mm:ss");//格式化String str4 = formatter3.w());System.out.println(str4);//2019-02-18 03:52:09//解析TemporalAccessor accessor = formatter3.parse("2019-02-18 03:52:09");System.out.println(accessor);}
其他日期时间API

java比较器概述
自定义类实现comparable自然排序
package com.atguigu.java;/*** 商品类* @author shkstart* @create 2019 下午 4:52*/
public class Goods implements  Comparable{private String name;private double price;public Goods() {}public Goods(String name, double price) {this.name = name;this.price = price;}public String getName() {return name;}public void setName(String name) {this.name = name;}public double getPrice() {return price;}public void setPrice(double price) {this.price = price;}@Overridepublic String toString() {return "Goods{" +"name='" + name + ''' +", price=" + price +'}';}//指明商品比较大小的方式:按照价格从低到高排序,再按照产品名称从高到低排序@Overridepublic int compareTo(Object o) {
//        System.out.println("**************");if(o instanceof Goods){Goods goods = (Goods)o;//方式一:if(this.price > goods.price){return 1;}else if(this.price < goods.price){return -1;}else{
//                return 0;return -this.namepareTo(goods.name);}//方式二:
//           return Doublepare(this.price,goods.price);}
//        return 0;throw new RuntimeException("传入的数据类型不一致!");}
}
package com.atguigu.java;import org.junit.Test;import java.util.Arrays;
import java.util.Comparator;/*** 一、说明:Java中的对象,正常情况下,只能进行比较:==  或  != 。不能使用 > 或 < 的*          但是在开发场景中,我们需要对多个对象进行排序,言外之意,就需要比较对象的大小。*          如何实现?使用两个接口中的任何一个:Comparable 或 Comparator** 二、Comparable接口与Comparator的使用的对比:*    Comparable接口的方式一旦一定,保证Comparable接口实现类的对象在任何位置都可以比较大小。*    Comparator接口属于临时性的比较。**thor shkstart* @create 2019 下午 4:41*/
public class CompareTest {/*Comparable接口的使用举例:  自然排序1.像String、包装类等实现了Comparable接口,重写了compareTo(obj)方法,给出了比较两个对象大小的方式。2.像String、包装类重写compareTo()方法以后,进行了从小到大的排列3. 重写compareTo(obj)的规则:如果当前对象this大于形参对象obj,则返回正整数,如果当前对象this小于形参对象obj,则返回负整数,如果当前对象this等于形参对象obj,则返回零。4. 对于自定义类来说,如果需要排序,我们可以让自定义类实现Comparable接口,重写compareTo(obj)方法。在compareTo(obj)方法中指明如何排序*/@Testpublic void test1(){String[] arr = new String[]{"AA","CC","KK","MM","GG","JJ","DD"};//Arrays.sort(arr);System.out.String(arr));}@Testpublic void test2(){Goods[] arr = new Goods[5];arr[0] = new Goods("lenovoMouse",34);arr[1] = new Goods("dellMouse",43);arr[2] = new Goods("xiaomiMouse",12);arr[3] = new Goods("huaweiMouse",65);arr[4] = new Goods("microsoftMouse",43);Arrays.sort(arr);System.out.String(arr));}
}
使用comparator类实现定制排序
    /*Comparator接口的使用:定制排序1.背景:当元素的类型没有实现java.lang.Comparable接口而又不方便修改代码,或者实现了java.lang.Comparable接口的排序规则不适合当前的操作,那么可以考虑使用 Comparator 的对象来排序2.重写compare(Object o1,Object o2)方法,比较o1和o2的大小:如果方法返回正整数,则表示o1大于o2;如果返回0,表示相等;返回负整数,表示o1小于o2。*/@Testpublic void test3(){String[] arr = new String[]{"AA","CC","KK","MM","GG","JJ","DD"};Arrays.sort(arr,new Comparator(){//按照字符串从大到小的顺序排列@Overridepublic int compare(Object o1, Object o2) {if(o1 instanceof String && o2 instanceof  String){String s1 = (String) o1;String s2 = (String) o2;return -s1pareTo(s2);}
//                return 0;throw new RuntimeException("输入的数据类型不一致");}});System.out.String(arr));}@Testpublic void test4(){Goods[] arr = new Goods[6];arr[0] = new Goods("lenovoMouse",34);arr[1] = new Goods("dellMouse",43);arr[2] = new Goods("xiaomiMouse",12);arr[3] = new Goods("huaweiMouse",65);arr[4] = new Goods("huaweiMouse",224);arr[5] = new Goods("microsoftMouse",43);Arrays.sort(arr, new Comparator() {//指明商品比较大小的方式:按照产品名称从低到高排序,再按照价格从高到低排序@Overridepublic int compare(Object o1, Object o2) {if(o1 instanceof Goods && o2 instanceof Goods){Goods g1 = (Goods)o1;Goods g2 = (Goods)o2;Name().Name())){return -Price(),g2.getPrice());}else{Name()Name());}}throw new RuntimeException("输入的数据类型不一致");}});System.out.String(arr));}
System类

Math类

BigInteger 和 BigDecimal类

枚举类的使用
自定义枚举类
package com.atguigu.java;/*** 一、枚举类的使用* 1.枚举类的理解:类的对象只有有限个,确定的。我们称此类为枚举类* 2.当需要定义一组常量时,强烈建议使用枚举类* 3.如果枚举类中只有一个对象,则可以作为单例模式的实现方式。** 二、如何定义枚举类* 方式一:jdk5.0之前,自定义枚举类* 方式二:jdk5.0,可以使用enum关键字定义枚举类** 三、Enum类中的常用方法:*    values()方法:返回枚举类型的对象数组。该方法可以很方便地遍历所有的枚举值。*    valueOf(String str):可以把一个字符串转为对应的枚举类对象。要求字符串必须是枚举类对象的“名字”。如不是,会有运行时异常:IllegalArgumentException。*    toString():返回当前枚举类对象常量的名称** 四、使用enum关键字定义的枚举类实现接口的情况*   情况一:实现接口,在enum类中实现抽象方法*   情况二:让枚举类的对象分别实现接口中的抽象方法** @author shkstart* @create 2019 上午 10:17*/
public class SeasonTest {public static void main(String[] args) {Season spring = Season.SPRING;System.out.println(spring);}}
//自定义枚举类
class Season{//1.声明Season对象的属性:private final修饰private final String seasonName;private final String seasonDesc;//2.私有化类的构造器,并给对象属性赋值private Season(String seasonName,String seasonDesc){this.seasonName = seasonName;this.seasonDesc = seasonDesc;}//3.提供当前枚举类的多个对象:public static final的public static final Season SPRING = new Season("春天","春暖花开");public static final Season SUMMER = new Season("夏天","夏日炎炎");public static final Season AUTUMN = new Season("秋天","秋高气爽");public static final Season WINTER = new Season("冬天","冰天雪地");//4.其他诉求1:获取枚举类对象的属性public String getSeasonName() {return seasonName;}public String getSeasonDesc() {return seasonDesc;}//4.其他诉求1:提供toString()@Overridepublic String toString() {return "Season{" +"seasonName='" + seasonName + ''' +", seasonDesc='" + seasonDesc + ''' +'}';}
}
使用enum关键字定义枚举类
package com.atguigu.java;/*** 使用enum关键字定义枚举类* 说明:定义的枚举类默认继承于java.lang.Enum类** @author shkstart* @create 2019 上午 10:35*/
public class SeasonTest1 {public static void main(String[] args) {Season1 summer = Season1.SUMMER;//toString():返回枚举类对象的名称System.out.String());//        System.out.println(Superclass());System.out.println("****************");//values():返回所有的枚举类对象构成的数组Season1[] values = Season1.values();for(int i = 0;i < values.length;i++){System.out.println(values[i]);values[i].show();}System.out.println("****************");Thread.State[] values1 = Thread.State.values();for (int i = 0; i < values1.length; i++) {System.out.println(values1[i]);}//valueOf(String objName):返回枚举类中对象名是objName的对象。Season1 winter = Season1.valueOf("WINTER");//如果没有objName的枚举类对象,则抛异常:IllegalArgumentException
//        Season1 winter = Season1.valueOf("WINTER1");System.out.println(winter);winter.show();}
}interface Info{void show();
}//使用enum关键字枚举类
enum Season1 implements Info{//1.提供当前枚举类的对象,多个对象之间用","隔开,末尾对象";"结束SPRING("春天","春暖花开"){@Overridepublic void show() {System.out.println("春天在哪里?");}},SUMMER("夏天","夏日炎炎"){@Overridepublic void show() {System.out.println("宁夏");}},AUTUMN("秋天","秋高气爽"){@Overridepublic void show() {System.out.println("秋天不回来");}},WINTER("冬天","冰天雪地"){@Overridepublic void show() {System.out.println("大约在冬季");}};//2.声明Season对象的属性:private final修饰private final String seasonName;private final String seasonDesc;//2.私有化类的构造器,并给对象属性赋值private Season1(String seasonName,String seasonDesc){this.seasonName = seasonName;this.seasonDesc = seasonDesc;}//4.其他诉求1:获取枚举类对象的属性public String getSeasonName() {return seasonName;}public String getSeasonDesc() {return seasonDesc;}
//    //4.其他诉求1:提供toString()
//
//    @Override
//    public String toString() {
//        return "Season1{" +
//                "seasonName='" + seasonName + ''' +
//                ", seasonDesc='" + seasonDesc + ''' +
//                '}';
//    }//    @Override
//    public void show() {
//        System.out.println("这是一个季节");
//    }
}
注解
package com.atguigu.java1;import org.junit.Test;import java.lang.annotation.Annotation;
import java.util.ArrayList;
import java.util.Date;/*** 注解的使用** 1. 理解Annotation:* ① jdk 5.0 新增的功能** ② Annotation 其实就是代码里的特殊标记, 这些标记可以在编译, 类加载, 运行时被读取, 并执行相应的处理。通过使用 Annotation,* 程序员可以在不改变原有逻辑的情况下, 在源文件中嵌入一些补充信息。** ③在JavaSE中,注解的使用目的比较简单,例如标记过时的功能,忽略警告等。在JavaEE/Android* 中注解占据了更重要的角色,例如用来配置应用程序的任何切面,代替JavaEE旧版中所遗留的繁冗* 代码和XML配置等。** 2. Annocation的使用示例* 示例一:生成文档相关的注解* 示例二:在编译时进行格式检查(JDK内置的三个基本注解)@Override: 限定重写父类方法, 该注解只能用于方法@Deprecated: 用于表示所修饰的元素(类, 方法等)已过时。通常是因为所修饰的结构危险或存在更好的选择@SuppressWarnings: 抑制编译器警告* 示例三:跟踪代码依赖性,实现替代配置文件功能** 3. 如何自定义注解:参照@SuppressWarnings定义* ① 注解声明为:@interface* ② 内部定义成员,通常使用value表示* ③ 可以指定成员的默认值,使用default定义* ④ 如果自定义注解没有成员,表明是一个标识作用。如果注解有成员,在使用注解时,需要指明成员的值。自定义注解必须配上注解的信息处理流程(使用反射)才有意义。自定义注解通过都会指明两个元注解:Retention、Target4. jdk 提供的4种元注解元注解:对现有的注解进行解释说明的注解Retention:指定所修饰的 Annotation 的生命周期:SOURCECLASS(默认行为)RUNTIME只有声明为RUNTIME生命周期的注解,才能通过反射获取。Target:用于指定被修饰的 Annotation 能用于修饰哪些程序元素*******出现的频率较低*******Documented:表示所修饰的注解在被javadoc解析时,保留下来。Inherited:被它修饰的 Annotation 将具有继承性。5.通过反射获取注解信息 ---到反射内容时系统讲解6. jdk 8 中注解的新特性:可重复注解、类型注解6.1 可重复注解:① 在MyAnnotation上声明@Repeatable,成员值为MyAnnotations.class② MyAnnotation的Target和Retention等元注解与MyAnnotations相同。6.2 类型注解:ElementType.TYPE_PARAMETER 表示该注解能写在类型变量的声明语句中(如:泛型声明)。ElementType.TYPE_USE 表示该注解能写在使用类型的任何语句中。** @author shkstart* @create 2019 上午 11:37*/
public class AnnotationTest {public static void main(String[] args) {Person p = new Student();p.walk();Date date = new Date(2020, 10, 11);System.out.println(date);@SuppressWarnings("unused")int num = 10;//        System.out.println(num);@SuppressWarnings({ "unused", "rawtypes" })ArrayList list = new ArrayList();}@Testpublic void testGetAnnotation(){Class clazz = Student.class;Annotation[] annotations = Annotations();for(int i = 0;i < annotations.length;i++){System.out.println(annotations[i]);}}
}//jdk 8之前的写法:
//@MyAnnotations({@MyAnnotation(value="hi"),@MyAnnotation(value="hi")})
@MyAnnotation(value="hi")
@MyAnnotation(value="abc")
class Person{private String name;private int age;public Person() {}@MyAnnotationpublic Person(String name, int age) {this.name = name;this.age = age;}@MyAnnotationpublic void walk(){System.out.println("人走路");}public void eat(){System.out.println("人吃饭");}
}interface Info{void show();
}class Student extends Person implements Info{@Overridepublic void walk() {System.out.println("学生走路");}public void show() {}
}class Generic<@MyAnnotation T>{public void show() throws @MyAnnotation RuntimeException{ArrayList<@MyAnnotation String> list = new ArrayList<>();int num = (@MyAnnotation int) 10L;}}
集合
集合框架
/*** 一、集合框架的概述** 1.集合、数组都是对多个数据进行存储操作的结构,简称Java容器。*  说明:此时的存储,主要指的是内存层面的存储,不涉及到持久化的存储(.txt,.jpg,.avi,数据库中)** 2.1 数组在存储多个数据方面的特点:*      > 一旦初始化以后,其长度就确定了。*      > 数组一旦定义好,其元素的类型也就确定了。我们也就只能操作指定类型的数据了。*       比如:String[] arr;int[] arr1;Object[] arr2;* 2.2 数组在存储多个数据方面的缺点:*      > 一旦初始化以后,其长度就不可修改。*      > 数组中提供的方法非常有限,对于添加、删除、插入数据等操作,非常不便,同时效率不高。*      > 获取数组中实际元素的个数的需求,数组没有现成的属性或方法可用*      > 数组存储数据的特点:有序、可重复。对于无序、不可重复的需求,不能满足。** 二、集合框架*      |----Collection接口:单列集合,用来存储一个一个的对象*          |----List接口:存储有序的、可重复的数据。  -->“动态”数组*              |----ArrayList、LinkedList、Vector**          |----Set接口:存储无序的、不可重复的数据   -->高中讲的“集合”*              |----HashSet、LinkedHashSet、TreeSet**      |----Map接口:双列集合,用来存储一对(key - value)一对的数据   -->高中函数:y = f(x)*              |----HashMap、LinkedHashMap、TreeMap、Hashtable、Properties*/
Collection接口中的方法的使用
package com.atguigu.java2;import org.junit.Test;import java.util.ArrayList;
import java.util.Collection;
import java.util.Date;/*** 三、Collection接口中的方法的使用**/
public class CollectionTest {@Testpublic void test1(){Collection coll = new ArrayList();//add(Object e):将元素e添加到集合coll中coll.add("AA");coll.add("BB");coll.add(123);//自动装箱coll.add(new Date());//size():获取添加的元素的个数System.out.println(coll.size());//4//addAll(Collection coll1):将coll1集合中的元素添加到当前的集合中Collection coll1 = new ArrayList();coll1.add(456);coll1.add("CC");coll.addAll(coll1);System.out.println(coll.size());//6System.out.println(coll);//clear():清空集合元素coll.clear();//isEmpty():判断当前集合是否为空System.out.println(coll.isEmpty());}}
package com.atguigu.java;import org.junit.Test;import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;
import java.util.List;/*** Collection接口中声明的方法的测试** 结论:* 向Collection接口的实现类的对象中添加数据obj时,要求obj所在类要重写equals().** @author shkstart* @create 2019 上午 10:04*/
public class CollectionTest {@Testpublic void test1(){Collection coll = new ArrayList();coll.add(123);coll.add(456);
//        Person p = new Person("Jerry",20);
//        coll.add(p);coll.add(new Person("Jerry",20));coll.add(new String("Tom"));coll.add(false);//1.contains(Object obj):判断当前集合中是否包含obj//我们在判断时会调用obj对象所在类的equals()。boolean contains = ains(123);System.out.println(contains);System.out.ains(new String("Tom")));//true
//        System.out.ains(p));//trueSystem.out.ains(new Person("Jerry",20)));//false -->true//2.containsAll(Collection coll1):判断形参coll1中的所有元素是否都存在于当前集合中。Collection coll1 = Arrays.asList(123,4567);System.out.ainsAll(coll1));}@Testpublic void test2(){//3.remove(Object obj):从当前集合中移除obj元素。Collection coll = new ArrayList();coll.add(123);coll.add(456);coll.add(new Person("Jerry",20));coll.add(new String("Tom"));coll.add(false);ve(1234);System.out.println(coll);ve(new Person("Jerry",20));System.out.println(coll);//4. removeAll(Collection coll1):差集:从当前集合中移除coll1中所有的元素。Collection coll1 = Arrays.asList(123,456);veAll(coll1);System.out.println(coll);}@Testpublic void test3(){Collection coll = new ArrayList();coll.add(123);coll.add(456);coll.add(new Person("Jerry",20));coll.add(new String("Tom"));coll.add(false);//5.retainAll(Collection coll1):交集:获取当前集合和coll1集合的交集,并返回给当前集合
//        Collection coll1 = Arrays.asList(123,456,789);
//        ainAll(coll1);
//        System.out.println(coll);//6.equals(Object obj):要想返回true,需要当前集合和形参集合的元素都相同。Collection coll1 = new ArrayList();coll1.add(456);coll1.add(123);coll1.add(new Person("Jerry",20));coll1.add(new String("Tom"));coll1.add(false);System.out.println(coll.equals(coll1));}@Testpublic void test4(){Collection coll = new ArrayList();coll.add(123);coll.add(456);coll.add(new Person("Jerry",20));coll.add(new String("Tom"));coll.add(false);//7.hashCode():返回当前对象的哈希值System.out.println(coll.hashCode());//8.集合 --->数组:toArray()Object[] arr = Array();for(int i = 0;i < arr.length;i++){System.out.println(arr[i]);}//拓展:数组 --->集合:调用Arrays类的静态方法asList()List<String> list = Arrays.asList(new String[]{"AA", "BB", "CC"});System.out.println(list);List arr1 = Arrays.asList(new int[]{123, 456});System.out.println(arr1.size());//1List arr2 = Arrays.asList(new Integer[]{123, 456});System.out.println(arr2.size());//2//9.iterator():返回Iterator接口的实例,用于遍历集合元素。放在IteratorTest.java中测试}
}
迭代器iterator
package com.atguigu.java;import org.junit.Test;import java.util.ArrayList;
import java.util.Collection;
import java.util.Iterator;/*** 集合元素的遍历操作,使用迭代器Iterator接口* 1.内部的方法:hasNext() 和  next()* 2.集合对象每次调用iterator()方法都得到一个全新的迭代器对象,* 默认游标都在集合的第一个元素之前。* 3.内部定义了remove(),可以在遍历的时候,删除集合中的元素。此方法不同于集合直接调用remove()** @author shkstart* @create 2019 上午 10:44*/
public class IteratorTest {@Testpublic void test1(){Collection coll = new ArrayList();coll.add(123);coll.add(456);coll.add(new Person("Jerry",20));coll.add(new String("Tom"));coll.add(false);Iterator iterator = coll.iterator();//方式一:
//        System.out.());
//        System.out.());
//        System.out.());
//        System.out.());
//        System.out.());
//        //报异常:NoSuchElementException
//        System.out.());//方式二:不推荐
//        for(int i = 0;i < coll.size();i++){
//            System.out.());
//        }//方式三:推荐hasNext():判断是否还有下一个元素while(iterator.hasNext()){//next():①指针下移 ②将下移以后集合位置上的元素返回System.out.());}}@Testpublic void test2(){Collection coll = new ArrayList();coll.add(123);coll.add(456);coll.add(new Person("Jerry",20));coll.add(new String("Tom"));coll.add(false);//错误方式一:
//        Iterator iterator = coll.iterator();
//        while((()) != null){
//            System.out.());
//        }//错误方式二://集合对象每次调用iterator()方法都得到一个全新的迭代器对象,默认游标都在集合的第一个元素之前。while (coll.iterator().hasNext()){System.out.println(coll.iterator().next());}}//测试Iterator中的remove()//如果还未调用next()或在上一次调用 next 方法之后已经调用了 remove 方法,// 再调用remove都会报IllegalStateException。@Testpublic void test3(){Collection coll = new ArrayList();coll.add(123);coll.add(456);coll.add(new Person("Jerry",20));coll.add(new String("Tom"));coll.add(false);//删除集合中"Tom"Iterator iterator = coll.iterator();while (iterator.hasNext()){
//            ve();Object obj = ();if("Tom".equals(obj)){ve();
//                ve();}}//遍历集合iterator = coll.iterator();while (iterator.hasNext()){System.out.());}}
}
新特性foreach循环遍历集合或项目
package com.atguigu.java;import org.junit.Test;import java.util.ArrayList;
import java.util.Collection;/*** jdk 5.0 新增了foreach循环,用于遍历集合、数组** @author shkstart* @create 2019 上午 11:24*/
public class ForTest {@Testpublic void test1(){Collection coll = new ArrayList();coll.add(123);coll.add(456);coll.add(new Person("Jerry",20));coll.add(new String("Tom"));coll.add(false);//for(集合元素的类型 局部变量 : 集合对象)//内部仍然调用了迭代器。for(Object obj : coll){System.out.println(obj);}}@Testpublic void test2(){int[] arr = new int[]{1,2,3,4,5,6};//for(数组元素的类型 局部变量 : 数组对象)for(int i : arr){System.out.println(i);}}//练习题@Testpublic void test3(){String[] arr = new String[]{"MM","MM","MM"};//        //方式一:普通for赋值
//        for(int i = 0;i < arr.length;i++){
//            arr[i] = "GG";
//        }//方式二:增强for循环for(String s : arr){s = "GG";}for(int i = 0;i < arr.length;i++){System.out.println(arr[i]);//元素不变}}
}
List接口
package com.atguigu.java;import org.junit.Test;import java.util.ArrayList;
import java.util.Arrays;
import java.util.Iterator;
import java.util.List;/*** 1. List接口框架**    |----Collection接口:单列集合,用来存储一个一个的对象*          |----List接口:存储有序的、可重复的数据。  -->“动态”数组,替换原有的数组*              |----ArrayList:作为List接口的主要实现类;线程不安全的,效率高;底层使用Object[] elementData存储*              |----LinkedList:对于频繁的插入、删除操作,使用此类效率比ArrayList高;底层使用双向链表存储*              |----Vector:作为List接口的古老实现类;线程安全的,效率低 ;底层使用Object[] elementData存储***   2. ArrayList的源码分析:*   2.1 jdk 7情况下*      ArrayList list = new ArrayList();//底层创建了长度是10的Object[]数组elementData*      list.add(123);//elementData[0] = new Integer(123);*      ...*      list.add(11);//如果此次的添加导致底层elementData数组容量不够,则扩容。*      默认情况下,扩容为原来的容量的1.5倍,同时需要将原有数组中的数据复制到新的数组中。**      结论:建议开发中使用带参的构造器:ArrayList list = new ArrayList(int capacity)**   2.2 jdk 8中ArrayList的变化:*      ArrayList list = new ArrayList();//底层Object[] elementData初始化为{}.并没有创建长度为10的数组**      list.add(123);//第一次调用add()时,底层才创建了长度10的数组,并将数据123添加到elementData[0]*      ...*      后续的添加和扩容操作与jdk 7 无异。*   2.3 小结:jdk7中的ArrayList的对象的创建类似于单例的饿汉式,而jdk8中的ArrayList的对象*            的创建类似于单例的懒汉式,延迟了数组的创建,节省内存。**  3. LinkedList的源码分析:*      LinkedList list = new LinkedList(); 内部声明了Node类型的first和last属性,默认值为null*      list.add(123);//将123封装到Node中,创建了Node对象。**      其中,Node定义为:体现了LinkedList的双向链表的说法*      private static class Node<E> {E item;Node<E> next;Node<E> prev;Node(Node<E> prev, E element, Node<E> next) {this.item =  = next;this.prev = prev;}}**   4. Vector的源码分析:jdk7和jdk8中通过Vector()构造器创建对象时,底层都创建了长度为10的数组。*      在扩容方面,默认扩容为原来的数组长度的2倍。**  面试题:ArrayList、LinkedList、Vector三者的异同?*  同:三个类都是实现了List接口,存储数据的特点相同:存储有序的、可重复的数据*  不同:见上**   5. List接口中的常用方法** @author shkstart* @create 2019 上午 11:39*/
public class ListTest {/*
void add(int index, Object ele):在index位置插入ele元素
boolean addAll(int index, Collection eles):从index位置开始将eles中的所有元素添加进来
Object get(int index):获取指定index位置的元素
int indexOf(Object obj):返回obj在集合中首次出现的位置
int lastIndexOf(Object obj):返回obj在当前集合中末次出现的位置
Object remove(int index):移除指定index位置的元素,并返回此元素
Object set(int index, Object ele):设置指定index位置的元素为ele
List subList(int fromIndex, int toIndex):返回从fromIndex到toIndex位置的子集合总结:常用方法
增:add(Object obj)
删:remove(int index) / remove(Object obj)
改:set(int index, Object ele)
查:get(int index)
插:add(int index, Object ele)
长度:size()
遍历:① Iterator迭代器方式② 增强for循环③ 普通的循环*/@Testpublic void test3(){ArrayList list = new ArrayList();list.add(123);list.add(456);list.add("AA");//方式一:Iterator迭代器方式Iterator iterator = list.iterator();while(iterator.hasNext()){System.out.());}System.out.println("***************");//方式二:增强for循环for(Object obj : list){System.out.println(obj);}System.out.println("***************");//方式三:普通for循环for(int i = 0;i < list.size();i++){System.out.(i));}}@Testpublic void test2(){ArrayList list = new ArrayList();list.add(123);list.add(456);list.add("AA");list.add(new Person("Tom",12));list.add(456);//int indexOf(Object obj):返回obj在集合中首次出现的位置。如果不存在,返回-1.int index = list.indexOf(4567);System.out.println(index);//int lastIndexOf(Object obj):返回obj在当前集合中末次出现的位置。如果不存在,返回-1.System.out.println(list.lastIndexOf(456));//Object remove(int index):移除指定index位置的元素,并返回此元素Object obj = ve(0);System.out.println(obj);System.out.println(list);//Object set(int index, Object ele):设置指定index位置的元素为elelist.set(1,"CC");System.out.println(list);//List subList(int fromIndex, int toIndex):返回从fromIndex到toIndex位置的左闭右开区间的子集合List subList = list.subList(2, 4);System.out.println(subList);System.out.println(list);}@Testpublic void test1(){ArrayList list = new ArrayList();list.add(123);list.add(456);list.add("AA");list.add(new Person("Tom",12));list.add(456);System.out.println(list);//void add(int index, Object ele):在index位置插入ele元素list.add(1,"BB");System.out.println(list);//boolean addAll(int index, Collection eles):从index位置开始将eles中的所有元素添加进来List list1 = Arrays.asList(1, 2, 3);list.addAll(list1);
//        list.add(list1);System.out.println(list.size());//9//Object get(int index):获取指定index位置的元素System.out.(0));}}
Set接口
package com.atguigu.java1;import org.junit.Test;import java.util.HashSet;
import java.util.Iterator;
import java.util.LinkedHashSet;
import java.util.Set;/*** 1. Set接口的框架:** |----Collection接口:单列集合,用来存储一个一个的对象*          |----Set接口:存储无序的、不可重复的数据   -->高中讲的“集合”*              |----HashSet:作为Set接口的主要实现类;线程不安全的;可以存储null值*                  |----LinkedHashSet:作为HashSet的子类;遍历其内部数据时,可以按照添加的顺序遍历*                                      对于频繁的遍历操作,LinkedHashSet效率高于HashSet.*              |----TreeSet:可以按照添加对象的指定属性,进行排序。***  1. Set接口中没有额外定义新的方法,使用的都是Collection中声明过的方法。**  2. 要求:向Set(主要指:HashSet、LinkedHashSet)中添加的数据,其所在的类一定要重写hashCode()和equals()*     要求:重写的hashCode()和equals()尽可能保持一致性:相等的对象必须具有相等的散列码*      重写两个方法的小技巧:对象中用作 equals() 方法比较的 Field,都应该用来计算 hashCode 值。*** @author shkstart* @create 2019 下午 3:40*/
public class SetTest {/*一、Set:存储无序的、不可重复的数据以HashSet为例说明:1. 无序性:不等于随机性。存储的数据在底层数组中并非按照数组索引的顺序添加,而是根据数据的哈希值决定的。2. 不可重复性:保证添加的元素按照equals()判断时,不能返回true.即:相同的元素只能添加一个。二、添加元素的过程:以HashSet为例:我们向HashSet中添加元素a,首先调用元素a所在类的hashCode()方法,计算元素a的哈希值,此哈希值接着通过某种算法计算出在HashSet底层数组中的存放位置(即为:索引位置),判断数组此位置上是否已经有元素:如果此位置上没有其他元素,则元素a添加成功。 --->情况1如果此位置上有其他元素b(或以链表形式存在的多个元素),则比较元素a与元素b的hash值:如果hash值不相同,则元素a添加成功。--->情况2如果hash值相同,进而需要调用元素a所在类的equals()方法:equals()返回true,元素a添加失败equals()返回false,则元素a添加成功。--->情况2对于添加成功的情况2和情况3而言:元素a 与已经存在指定索引位置上数据以链表的方式存储。jdk 7 :元素a放到数组中,指向原来的元素。jdk 8 :原来的元素在数组中,指向元素a总结:七上八下HashSet底层:数组+链表的结构。*/@Testpublic void test1(){Set set = new HashSet();set.add(456);set.add(123);set.add(123);set.add("AA");set.add("CC");set.add(new User("Tom",12));set.add(new User("Tom",12));set.add(129);Iterator iterator = set.iterator();while(iterator.hasNext()){System.out.());}}//LinkedHashSet的使用//LinkedHashSet作为HashSet的子类,在添加数据的同时,每个数据还维护了两个引用,记录此数据前一个数据和后一个数据。//优点:对于频繁的遍历操作,LinkedHashSet效率高于HashSet@Testpublic void test2(){Set set = new LinkedHashSet();set.add(456);set.add(123);set.add(123);set.add("AA");set.add("CC");set.add(new User("Tom",12));set.add(new User("Tom",12));set.add(129);Iterator iterator = set.iterator();while(iterator.hasNext()){System.out.());}}
}
package com.atguigu.java1;import org.junit.Test;import java.util.Comparator;
import java.util.Iterator;
import java.util.TreeSet;/*** @author shkstart* @create 2019 下午 4:59*/
public class TreeSetTest {/*1.向TreeSet中添加的数据,要求是相同类的对象。2.两种排序方式:自然排序(实现Comparable接口) 和 定制排序(Comparator)3.自然排序中,比较两个对象是否相同的标准为:compareTo()返回0.不再是equals().4.定制排序中,比较两个对象是否相同的标准为:compare()返回0.不再是equals().*/@Testpublic void test1(){TreeSet set = new TreeSet();//失败:不能添加不同类的对象
//        set.add(123);
//        set.add(456);
//        set.add("AA");
//        set.add(new User("Tom",12));//举例一:
//        set.add(34);
//        set.add(-34);
//        set.add(43);
//        set.add(11);
//        set.add(8);//举例二:set.add(new User("Tom",12));set.add(new User("Jerry",32));set.add(new User("Jim",2));set.add(new User("Mike",65));set.add(new User("Jack",33));set.add(new User("Jack",56));Iterator iterator = set.iterator();while(iterator.hasNext()){System.out.());}}@Testpublic void test2(){Comparator com = new Comparator() {//按照年龄从小到大排列@Overridepublic int compare(Object o1, Object o2) {if(o1 instanceof User && o2 instanceof User){User u1 = (User)o1;User u2 = (User)o2;return Age(),u2.getAge());}else{throw new RuntimeException("输入的数据类型不匹配");}}};TreeSet set = new TreeSet(com);set.add(new User("Tom",12));set.add(new User("Jerry",32));set.add(new User("Jim",2));set.add(new User("Mike",65));set.add(new User("Mary",33));set.add(new User("Jack",33));set.add(new User("Jack",56));Iterator iterator = set.iterator();while(iterator.hasNext()){System.out.());}}}
Map接口
package com.atguigu.java;import org.junit.Test;import java.util.*;/*** 一、Map的实现类的结构:*  |----Map:双列数据,存储key-value对的数据   ---类似于高中的函数:y = f(x)*         |----HashMap:作为Map的主要实现类;线程不安全的,效率高;存储null的key和value*              |----LinkedHashMap:保证在遍历map元素时,可以按照添加的顺序实现遍历。*                      原因:在原有的HashMap底层结构基础上,添加了一对指针,指向前一个和后一个元素。*                      对于频繁的遍历操作,此类执行效率高于HashMap。*         |----TreeMap:保证按照添加的key-value对进行排序,实现排序遍历。此时考虑key的自然排序或定制排序*                      底层使用红黑树*         |----Hashtable:作为古老的实现类;线程安全的,效率低;不能存储null的key和value*              |----Properties:常用来处理配置文件。key和value都是String类型***      HashMap的底层:数组+链表  (jdk7及之前)*                    数组+链表+红黑树 (jdk 8)***  面试题:*  1. HashMap的底层实现原理?*  2. HashMap 和 Hashtable的异同?*  3. CurrentHashMap 与 Hashtable的异同?(暂时不讲)**  二、Map结构的理解:*    Map中的key:无序的、不可重复的,使用Set存储所有的key  ---> key所在的类要重写equals()和hashCode() (以HashMap为例)*    Map中的value:无序的、可重复的,使用Collection存储所有的value --->value所在的类要重写equals()*    一个键值对:key-value构成了一个Entry对象。*    Map中的entry:无序的、不可重复的,使用Set存储所有的entry**  三、HashMap的底层实现原理?以jdk7为例说明:*      HashMap map = new HashMap():*      在实例化以后,底层创建了长度是16的一维数组Entry[] table。*      ...可能已经执行过多次*      map.put(key1,value1):*      首先,调用key1所在类的hashCode()计算key1哈希值,此哈希值经过某种算法计算以后,得到在Entry数组中的存放位置。*      如果此位置上的数据为空,此时的key1-value1添加成功。 ----情况1*      如果此位置上的数据不为空,(意味着此位置上存在一个或多个数据(以链表形式存在)),比较key1和已经存在的一个或多个数据*      的哈希值:*              如果key1的哈希值与已经存在的数据的哈希值都不相同,此时key1-value1添加成功。----情况2*              如果key1的哈希值和已经存在的某一个数据(key2-value2)的哈希值相同,继续比较:调用key1所在类的equals(key2)方法,比较:*                      如果equals()返回false:此时key1-value1添加成功。----情况3*                      如果 equals()返回true:使用value1替换value2。**       补充:关于情况2和情况3:此时key1-value1和原来的数据以链表的方式存储。**      在不断的添加过程中,会涉及到扩容问题,当超出临界值(且要存放的位置非空)时,扩容。默认的扩容方式:扩容为原来容量的2倍,并将原有的数据复制过来。**      jdk8 相较于jdk7在底层实现方面的不同:*      1. new HashMap():底层没有创建一个长度为16的数组*      2. jdk 8底层的数组是:Node[],而非Entry[]*      3. 首次调用put()方法时,底层创建长度为16的数组*      4. jdk7底层结构只有:数组+链表。jdk8中底层结构:数组+链表+红黑树。*         4.1 形成链表时,七上八下(jdk7:新的元素指向旧的元素。jdk8:旧的元素指向新的元素)4.2 当数组的某一个索引位置上的元素以链表形式存在的数据个数 > 8 且当前数组的长度 > 64时,此时此索引位置上的所数据改为使用红黑树存储。**      DEFAULT_INITIAL_CAPACITY : HashMap的默认容量,16*      DEFAULT_LOAD_FACTOR:HashMap的默认加载因子:0.75*      threshold:扩容的临界值,=容量*填充因子:16 * 0.75 => 12*      TREEIFY_THRESHOLD:Bucket中链表长度大于该默认值,转化为红黑树:8*      MIN_TREEIFY_CAPACITY:桶中的Node被树化时最小的hash表容量:64**  四、LinkedHashMap的底层实现原理(了解)*      源码中:*      static class Entry<K,V> extends HashMap.Node<K,V> {Entry<K,V> before, after;//能够记录添加的元素的先后顺序Entry(int hash, K key, V value, Node<K,V> next) {super(hash, key, value, next);}}***   五、Map中定义的方法:添加、删除、修改操作:Object put(Object key,Object value):将指定key-value添加到(或修改)当前map对象中void putAll(Map m):将m中的所有key-value对存放到当前map中Object remove(Object key):移除指定key的key-value对,并返回valuevoid clear():清空当前map中的所有数据元素查询的操作:Object get(Object key):获取指定key对应的valueboolean containsKey(Object key):是否包含指定的keyboolean containsValue(Object value):是否包含指定的valueint size():返回map中key-value对的个数boolean isEmpty():判断当前map是否为空boolean equals(Object obj):判断当前map和参数对象obj是否相等元视图操作的方法:Set keySet():返回所有key构成的Set集合Collection values():返回所有value构成的Collection集合Set entrySet():返回所有key-value对构成的Set集合*总结:常用方法:* 添加:put(Object key,Object value)* 删除:remove(Object key)* 修改:put(Object key,Object value)* 查询:get(Object key)* 长度:size()* 遍历:keySet() / values() / entrySet()*** @author shkstart* @create 2019 上午 11:15*/
public class MapTest {/*元视图操作的方法:Set keySet():返回所有key构成的Set集合Collection values():返回所有value构成的Collection集合Set entrySet():返回所有key-value对构成的Set集合*/@Testpublic void test5(){Map map = new HashMap();map.put("AA",123);map.put(45,1234);map.put("BB",56);//遍历所有的key集:keySet()Set set = map.keySet();Iterator iterator = set.iterator();while(iterator.hasNext()){System.out.());}System.out.println();//遍历所有的value集:values()Collection values = map.values();for(Object obj : values){System.out.println(obj);}System.out.println();//遍历所有的key-value//方式一:entrySet()Set entrySet = Set();Iterator iterator1 = entrySet.iterator();while (iterator1.hasNext()){Object obj = ();//entrySet集合中的元素都是entryMap.Entry entry = (Map.Entry) obj;System.out.Key() + "---->" + Value());}System.out.println();//方式二:Set keySet = map.keySet();Iterator iterator2 = keySet.iterator();while(iterator2.hasNext()){Object key = ();Object value = (key);System.out.println(key + "=====" + value);}}/*元素查询的操作:Object get(Object key):获取指定key对应的valueboolean containsKey(Object key):是否包含指定的keyboolean containsValue(Object value):是否包含指定的valueint size():返回map中key-value对的个数boolean isEmpty():判断当前map是否为空boolean equals(Object obj):判断当前map和参数对象obj是否相等*/@Testpublic void test4(){Map map = new HashMap();map.put("AA",123);map.put(45,123);map.put("BB",56);// Object get(Object key)System.out.(45));//containsKey(Object key)boolean isExist = ainsKey("BB");System.out.println(isExist);isExist = ainsValue(123);System.out.println(isExist);map.clear();System.out.println(map.isEmpty());}/*添加、删除、修改操作:Object put(Object key,Object value):将指定key-value添加到(或修改)当前map对象中void putAll(Map m):将m中的所有key-value对存放到当前map中Object remove(Object key):移除指定key的key-value对,并返回valuevoid clear():清空当前map中的所有数据*/@Testpublic void test3(){Map map = new HashMap();//添加map.put("AA",123);map.put(45,123);map.put("BB",56);//修改map.put("AA",87);System.out.println(map);Map map1 = new HashMap();map1.put("CC",123);map1.put("DD",123);map.putAll(map1);System.out.println(map);//remove(Object key)Object value = ve("CC");System.out.println(value);System.out.println(map);//clear()map.clear();//与map = null操作不同System.out.println(map.size());System.out.println(map);}@Testpublic void test2(){Map map = new HashMap();map = new LinkedHashMap();map.put(123,"AA");map.put(345,"BB");map.put(12,"CC");System.out.println(map);}@Testpublic void test1(){Map map = new HashMap();
//        map = new Hashtable();map.put(null,123);}
}
package com.atguigu.java;import org.junit.Test;import java.util.*;/*** @author shkstart* @create 2019 下午 3:46*/
public class TreeMapTest {//向TreeMap中添加key-value,要求key必须是由同一个类创建的对象//因为要按照key进行排序:自然排序 、定制排序//自然排序@Testpublic void test1(){TreeMap map = new TreeMap();User u1 = new User("Tom",23);User u2 = new User("Jerry",32);User u3 = new User("Jack",20);User u4 = new User("Rose",18);map.put(u1,98);map.put(u2,89);map.put(u3,76);map.put(u4,100);Set entrySet = Set();Iterator iterator1 = entrySet.iterator();while (iterator1.hasNext()){Object obj = ();Map.Entry entry = (Map.Entry) obj;System.out.Key() + "---->" + Value());}}//定制排序@Testpublic void test2(){TreeMap map = new TreeMap(new Comparator() {@Overridepublic int compare(Object o1, Object o2) {if(o1 instanceof User && o2 instanceof User){User u1 = (User)o1;User u2 = (User)o2;return Age(),u2.getAge());}throw new RuntimeException("输入的类型不匹配!");}});User u1 = new User("Tom",23);User u2 = new User("Jerry",32);User u3 = new User("Jack",20);User u4 = new User("Rose",18);map.put(u1,98);map.put(u2,89);map.put(u3,76);map.put(u4,100);Set entrySet = Set();Iterator iterator1 = entrySet.iterator();while (iterator1.hasNext()){Object obj = ();Map.Entry entry = (Map.Entry) obj;System.out.Key() + "---->" + Value());}}
package com.atguigu.java;import java.io.FileInputStream;
import java.io.IOException;
import java.util.Properties;/*** @author shkstart* @create 2019 下午 4:07*/
public class PropertiesTest {//Properties:常用来处理配置文件。key和value都是String类型public static void main(String[] args)  {FileInputStream fis = null;try {Properties pros = new Properties();fis = new FileInputStream("jdbc.properties");pros.load(fis);//加载流对应的文件String name = Property("name");String password = Property("password");System.out.println("name = " + name + ", password = " + password);} catch (IOException e) {e.printStackTrace();} finally {if(fis != null){try {fis.close();} catch (IOException e) {e.printStackTrace();}}}}
}
Collections工具类
package com.atguigu.java;import org.junit.Test;import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;/*** Collections:操作Collection、Map的工具类*** 面试题:Collection 和 Collections的区别?*** @author shkstart* @create 2019 下午 4:19*/
public class CollectionsTest {/*
reverse(List):反转 List 中元素的顺序
shuffle(List):对 List 集合元素进行随机排序
sort(List):根据元素的自然顺序对指定 List 集合元素按升序排序
sort(List,Comparator):根据指定的 Comparator 产生的顺序对 List 集合元素进行排序
swap(List,int, int):将指定 list 集合中的 i 处元素和 j 处元素进行交换Object max(Collection):根据元素的自然顺序,返回给定集合中的最大元素
Object max(Collection,Comparator):根据 Comparator 指定的顺序,返回给定集合中的最大元素
Object min(Collection)
Object min(Collection,Comparator)
int frequency(Collection,Object):返回指定集合中指定元素的出现次数
void copy(List dest,List src):将src中的内容复制到dest中
boolean replaceAll(List list,Object oldVal,Object newVal):使用新值替换 List 对象的所有旧值*/@Testpublic void test2(){List list = new ArrayList();list.add(123);list.add(43);list.add(765);list.add(-97);list.add(0);//报异常:IndexOutOfBoundsException("Source does not fit in dest")
//        List dest = new ArrayList();
//        py(dest,list);//正确的:List dest = Arrays.asList(new Object[list.size()]);System.out.println(dest.size());//list.size();py(dest,list);System.out.println(dest);/*Collections 类中提供了多个 synchronizedXxx() 方法,该方法可使将指定集合包装成线程同步的集合,从而可以解决多线程并发访问集合时的线程安全问题*///返回的list1即为线程安全的ListList list1 = Collections.synchronizedList(list);}@Testpublic void test1(){List list = new ArrayList();list.add(123);list.add(43);list.add(765);list.add(765);list.add(765);list.add(-97);list.add(0);System.out.println(list);//        verse(list);
//        Collections.shuffle(list);
//        Collections.sort(list);
//        Collections.swap(list,1,2);int frequency = Collections.frequency(list, 123);System.out.println(list);System.out.println(frequency);}}
泛型
package com.atguigu.java;import org.junit.Test;import java.util.*;/**** 泛型的使用* 1.jdk 5.0新增的特性** 2.在集合中使用泛型:*  总结:*  ① 集合接口或集合类在jdk5.0时都修改为带泛型的结构。*  ② 在实例化集合类时,可以指明具体的泛型类型*  ③ 指明完以后,在集合类或接口中凡是定义类或接口时,内部结构(比如:方法、构造器、属性等)使用到类的泛型的位置,都指定为实例化的泛型类型。*    比如:add(E e)  --->实例化以后:add(Integer e)*  ④ 注意点:泛型的类型必须是类,不能是基本数据类型。需要用到基本数据类型的位置,拿包装类替换*  ⑤ 如果实例化时,没有指明泛型的类型。默认类型为java.lang.Object类型。** 3.如何自定义泛型结构:泛型类、泛型接口;泛型方法。见 GenericTest1.java** @author shkstart* @create 2019 上午 9:59*/
public class GenericTest {//在集合中使用泛型之前的情况:@Testpublic void test1(){ArrayList list = new ArrayList();//需求:存放学生的成绩list.add(78);list.add(76);list.add(89);list.add(88);//问题一:类型不安全
//        list.add("Tom");for(Object score : list){//问题二:强转时,可能出现ClassCastExceptionint stuScore = (Integer) score;System.out.println(stuScore);}}//在集合中使用泛型的情况:以ArrayList为例@Testpublic void test2(){ArrayList<Integer> list =  new ArrayList<Integer>();list.add(78);list.add(87);list.add(99);list.add(65);//编译时,就会进行类型检查,保证数据的安全
//        list.add("Tom");//方式一:
//        for(Integer score : list){
//            //避免了强转操作
//            int stuScore = score;
//
//            System.out.println(stuScore);
//
//        }//方式二:Iterator<Integer> iterator = list.iterator();while(iterator.hasNext()){int stuScore = ();System.out.println(stuScore);}}//在集合中使用泛型的情况:以HashMap为例@Testpublic void test3(){
//        Map<String,Integer> map = new HashMap<String,Integer>();//jdk7新特性:类型推断Map<String,Integer> map = new HashMap<>();map.put("Tom",87);map.put("Jerry",87);map.put("Jack",67);//        map.put(123,"ABC");//泛型的嵌套Set<Map.Entry<String,Integer>> entry = Set();Iterator<Map.Entry<String, Integer>> iterator = entry.iterator();while(iterator.hasNext()){Map.Entry<String, Integer> e = ();String key = e.getKey();Integer value = e.getValue();System.out.println(key + "----" + value);}}}
package com.atguigu.java;import java.util.ArrayList;
import java.util.List;/*** 自定义泛型类* @author shkstart* @create 2019 上午 11:05*/
public class Order<T> {String orderName;int orderId;//类的内部结构就可以使用类的泛型T orderT;public Order(){//编译不通过
//        T[] arr = new T[10];//编译通过T[] arr = (T[]) new Object[10];}public Order(String orderName,int orderId,T orderT){derName = derId = derT = orderT;}//如下的三个方法都不是泛型方法public T getOrderT(){return orderT;}public void setOrderT(T orderT){derT = orderT;}@Overridepublic String toString() {return "Order{" +"orderName='" + orderName + ''' +", orderId=" + orderId +", orderT=" + orderT +'}';}//静态方法中不能使用类的泛型。
//    public static void show(T orderT){
//        System.out.println(orderT);
//    }public void show(){//编译不通过
//        try{
//
//
//        }catch(T t){
//
//        }}//泛型方法:在方法中出现了泛型的结构,泛型参数与类的泛型参数没有任何关系。//换句话说,泛型方法所属的类是不是泛型类都没有关系。//泛型方法,可以声明为静态的。原因:泛型参数是在调用方法时确定的。并非在实例化类时确定。public static <E>  List<E> copyFromArrayToList(E[] arr){ArrayList<E> list = new ArrayList<>();for(E e : arr){list.add(e);}return list;}
}
package com.atguigu.java;import org.junit.Test;import java.util.ArrayList;
import java.util.List;/** 如何自定义泛型结构:泛型类、泛型接口;泛型方法。** 1. 关于自定义泛型类、泛型接口:**** @author shkstart* @create 2019 上午 11:09*/
public class GenericTest1 {@Testpublic void test1(){//如果定义了泛型类,实例化没有指明类的泛型,则认为此泛型类型为Object类型//要求:如果大家定义了类是带泛型的,建议在实例化时要指明类的泛型。Order order = new Order();order.setOrderT(123);order.setOrderT("ABC");//建议:实例化时指明类的泛型Order<String> order1 = new Order<String>("orderAA",1001,"order:AA");order1.setOrderT("AA:hello");}@Testpublic void test2(){SubOrder sub1 = new SubOrder();//由于子类在继承带泛型的父类时,指明了泛型类型。则实例化子类对象时,不再需要指明泛型。sub1.setOrderT(1122);SubOrder1<String> sub2 = new SubOrder1<>();sub2.setOrderT(&#");}@Testpublic void test3(){ArrayList<String> list1 = null;ArrayList<Integer> list2 = new ArrayList<Integer>();//泛型不同的引用不能相互赋值。
//        list1 = list2;Person p1 = null;Person p2 = null;p1 = p2;}//测试泛型方法@Testpublic void test4(){Order<String> order = new Order<>();Integer[] arr = new Integer[]{1,2,3,4};//泛型方法在调用时,指明泛型参数的类型。List<Integer> list = pyFromArrayToList(arr);System.out.println(list);}
}
package com.atguigu.java2;import org.junit.Test;import java.util.AbstractList;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;/**** 1. 泛型在继承方面的体现*** 2. 通配符的使用** @author shkstart* @create 2019 下午 2:13*/
public class GenericTest {/*1. 泛型在继承方面的体现虽然类A是类B的父类,但是G<A> 和G<B>二者不具备子父类关系,二者是并列关系。补充:类A是类B的父类,A<G> 是 B<G> 的父类*/@Testpublic void test1(){Object obj = null;String str = null;obj = str;Object[] arr1 = null;String[] arr2 = null;arr1 = arr2;//编译不通过
//        Date date = new Date();
//        str = date;List<Object> list1 = null;List<String> list2 = new ArrayList<String>();//此时的list1和list2的类型不具有子父类关系//编译不通过
//        list1 = list2;/*反证法:假设list1 = list2;list1.add(123);导致混入非String的数据。出错。*/show(list1);show1(list2);}public void show1(List<String> list){}public void show(List<Object> list){}@Testpublic void test2(){AbstractList<String> list1 = null;List<String> list2 = null;ArrayList<String> list3 = null;list1 = list3;list2 = list3;List<String> list4 = new ArrayList<>();}/*2. 通配符的使用通配符:?类A是类B的父类,G<A>和G<B>是没有关系的,二者共同的父类是:G<?>*/@Testpublic void test3(){List<Object> list1 = null;List<String> list2 = null;List<?> list = null;list = list1;list = list2;//编译通过
//        print(list1);
//        print(list2);//List<String> list3 = new ArrayList<>();list3.add("AA");list3.add("BB");list3.add("CC");list = list3;//添加(写入):对于List<?>就不能向其内部添加数据。//除了添加null之外。
//        list.add("DD");
//        list.add('?');list.add(null);//获取(读取):允许读取数据,读取的数据类型为Object。Object o = (0);System.out.println(o);}public void print(List<?> list){Iterator<?> iterator = list.iterator();while(iterator.hasNext()){Object obj = ();System.out.println(obj);}}/*3.有限制条件的通配符的使用。? extends A:G<? extends A> 可以作为G<A>和G<B>的父类,其中B是A的子类? super A:G<? super A> 可以作为G<A>和G<B>的父类,其中B是A的父类*/@Testpublic void test4(){List<? extends Person> list1 = null;List<? super Person> list2 = null;List<Student> list3 = new ArrayList<Student>();List<Person> list4 = new ArrayList<Person>();List<Object> list5 = new ArrayList<Object>();list1 = list3;list1 = list4;
//        list1 = list5;//        list2 = list3;list2 = list4;list2 = list5;//读取数据:list1 = list3;Person p = (0);//编译不通过//Student s = (0);list2 = list4;Object obj = (0);编译不通过
//        Person obj = (0);//写入数据://编译不通过
//        list1.add(new Student());//编译通过list2.add(new Person());list2.add(new Student());}}
File类
package com.atguigu.java3;import org.junit.Test;import java.io.File;
import java.io.IOException;
import java.util.Date;/*** File类的使用** 1. File类的一个对象,代表一个文件或一个文件目录(俗称:文件夹)* 2. File类声明在java.io包下* 3. File类中涉及到关于文件或文件目录的创建、删除、重命名、修改时间、文件大小等方法,*    并未涉及到写入或读取文件内容的操作。如果需要读取或写入文件内容,必须使用IO流来完成。* 4. 后续File类的对象常会作为参数传递到流的构造器中,指明读取或写入的"终点".***** @author shkstart* @create 2019 下午 4:05*/
public class FileTest {/*1.如何创建File类的实例File(String filePath)File(String parentPath,String childPath)File(File parentFile,String childPath)2.相对路径:相较于某个路径下,指明的路径。绝对路径:包含盘符在内的文件或文件目录的路径3.路径分隔符windows:\unix:/*/@Testpublic void test1(){//构造器1File file1 = new File(&#");//相对于当前moduleFile file2 =  new File("D:\workspace_idea1\JavaSenior\day08\he.txt");System.out.println(file1);System.out.println(file2);//构造器2:File file3 = new File("D:\workspace_idea1","JavaSenior");System.out.println(file3);//构造器3:File file4 = new File(file3,&#");System.out.println(file4);}/*
public String getAbsolutePath():获取绝对路径
public String getPath() :获取路径
public String getName() :获取名称
public String getParent():获取上层文件目录路径。若无,返回null
public long length() :获取文件长度(即:字节数)。不能获取目录的长度。
public long lastModified() :获取最后一次的修改时间,毫秒值如下的两个方法适用于文件目录:
public String[] list() :获取指定目录下的所有文件或者文件目录的名称数组
public File[] listFiles() :获取指定目录下的所有文件或者文件目录的File数组*/@Testpublic void test2(){File file1 = new File(&#");File file2 = new File("d:\io\hi.txt");System.out.AbsolutePath());System.out.Path());System.out.Name());System.out.Parent());System.out.println(file1.length());System.out.println(new Date(file1.lastModified()));System.out.println();System.out.AbsolutePath());System.out.Path());System.out.Name());System.out.Parent());System.out.println(file2.length());System.out.println(file2.lastModified());}@Testpublic void test3(){File file = new File("D:\workspace_idea1\JavaSenior");String[] list = file.list();for(String s : list){System.out.println(s);}System.out.println();File[] files = file.listFiles();for(File f : files){System.out.println(f);}}/*public boolean renameTo(File dest):把文件重命名为指定的文件路径比如&#ameTo(file2)为例:要想保证返回true,需要file1在硬盘中是存在的,且file2不能在硬盘中存在。*/@Testpublic void test4(){File file1 = new File(&#");File file2 = new File("D:\io\hi.txt");boolean renameTo = ameTo(file1);System.out.println(renameTo);}/*
public boolean isDirectory():判断是否是文件目录
public boolean isFile() :判断是否是文件
public boolean exists() :判断是否存在
public boolean canRead() :判断是否可读
public boolean canWrite() :判断是否可写
public boolean isHidden() :判断是否隐藏*/@Testpublic void test5(){File file1 = new File(&#");file1 = new File(&#");System.out.println(file1.isDirectory());System.out.println(file1.isFile());System.out.ists());System.out.println(file1.canRead());System.out.println(file1.canWrite());System.out.println(file1.isHidden());System.out.println();File file2 = new File("d:\io");file2 = new File("d:\io1");System.out.println(file2.isDirectory());System.out.println(file2.isFile());System.out.ists());System.out.println(file2.canRead());System.out.println(file2.canWrite());System.out.println(file2.isHidden());}/*创建硬盘中对应的文件或文件目录
public boolean createNewFile() :创建文件。若文件存在,则不创建,返回false
public boolean mkdir() :创建文件目录。如果此文件目录存在,就不创建了。如果此文件目录的上层目录不存在,也不创建。
public boolean mkdirs() :创建文件目录。如果此文件目录存在,就不创建了。如果上层文件目录不存在,一并创建删除磁盘中的文件或文件目录
public boolean delete():删除文件或者文件夹删除注意事项:Java中的删除不走回收站。*/@Testpublic void test6() throws IOException {File file1 = new File(&#");if(!ists()){//文件的创建ateNewFile();System.out.println("创建成功");}else{//文件存在file1.delete();System.out.println("删除成功");}}@Testpublic void test7(){//文件目录的创建File file1 = new File("d:\io\io1\io3");boolean mkdir = file1.mkdir();if(mkdir){System.out.println("创建成功1");}File file2 = new File("d:\io\io1\io4");boolean mkdir1 = file2.mkdirs();if(mkdir1){System.out.println("创建成功2");}//要想删除成功,io4文件目录下不能有子目录或文件File file3 = new File("D:\io\io1\io4");file3 = new File("D:\io\io1");System.out.println(file3.delete());}
}
IO流

FileReader和FileWriter
 package com.atguigu.java;import org.junit.Test;import java.io.*;/**** 一、流的分类:* 1.操作数据单位:字节流、字符流* 2.数据的流向:输入流、输出流* 3.流的角色:节点流、处理流** 二、流的体系结构* 抽象基类         节点流(或文件流)                               缓冲流(处理流的一种)* InputStream     FileInputStream   (read(byte[] buffer))        BufferedInputStream (read(byte[] buffer))* OutputStream    FileOutputStream  (write(byte[] buffer,0,len)  BufferedOutputStream (write(byte[] buffer,0,len) / flush()* Reader          FileReader (read(char[] cbuf))                 BufferedReader (read(char[] cbuf) / readLine())* Writer          FileWriter (write(char[] cbuf,0,len)           BufferedWriter (write(char[] cbuf,0,len) / flush()**** @author shkstart* @create 2019 上午 10:40*/
public class FileReaderWriterTest {public static void main(String[] args) {File file = new File(&#");//相较于当前工程System.out.AbsolutePath());File file1 = new File("day09\");System.out.AbsolutePath());}/*将day09下的文件内容读入程序中,并输出到控制台说明点:1. read()的理解:返回读入的一个字符。如果达到文件末尾,返回-12. 异常的处理:为了保证流资源一定可以执行关闭操作。需要使用try-catch-finally处理3. 读入的文件一定要存在,否则就会报FileNotFoundException。*/@Testpublic void testFileReader(){FileReader fr = null;try {//1.实例化File类的对象,指明要操作的文件File file = new File(&#");//相较于当前Module//2.提供具体的流fr = new FileReader(file);//3.数据的读入//read():返回读入的一个字符。如果达到文件末尾,返回-1//方式一:
//        int data = fr.read();
//        while(data != -1){
//            System.out.print((char)data);
//            data = fr.read();
//        }//方式二:语法上针对于方式一的修改int data;while((data = fr.read()) != -1){System.out.print((char)data);}} catch (IOException e) {e.printStackTrace();} finally {//4.流的关闭操作
//            try {
//                if(fr != null)
//                    fr.close();
//            } catch (IOException e) {
//                e.printStackTrace();
//            }//或if(fr != null){try {fr.close();} catch (IOException e) {e.printStackTrace();}}}}//对read()操作升级:使用read的重载方法@Testpublic void testFileReader1()  {FileReader fr = null;try {//1.File类的实例化File file = new File(&#");//2.FileReader流的实例化fr = new FileReader(file);//3.读入的操作//read(char[] cbuf):返回每次读入cbuf数组中的字符的个数。如果达到文件末尾,返回-1char[] cbuf = new char[5];int len;while((len = fr.read(cbuf)) != -1){//方式一://错误的写法
//                for(int i = 0;i < cbuf.length;i++){
//                    System.out.print(cbuf[i]);
//                }//正确的写法
//                for(int i = 0;i < len;i++){
//                    System.out.print(cbuf[i]);
//                }//方式二://错误的写法,对应着方式一的错误的写法
//                String str = new String(cbuf);
//                System.out.print(str);//正确的写法String str = new String(cbuf,0,len);System.out.print(str);}} catch (IOException e) {e.printStackTrace();} finally {if(fr != null){//4.资源的关闭try {fr.close();} catch (IOException e) {e.printStackTrace();}}}}/*从内存中写出数据到硬盘的文件里。说明:1. 输出操作,对应的File可以不存在的。并不会报异常2.File对应的硬盘中的文件如果不存在,在输出的过程中,会自动创建此文件。File对应的硬盘中的文件如果存在:如果流使用的构造器是:FileWriter(file,false) / FileWriter(file):对原有文件的覆盖如果流使用的构造器是:FileWriter(file,true):不会对原有文件覆盖,而是在原有文件基础上追加内容*/@Testpublic void testFileWriter() {FileWriter fw = null;try {//1.提供File类的对象,指明写出到的文件File file = new File(&#");//2.提供FileWriter的对象,用于数据的写出fw = new FileWriter(file,false);//3.写出的操作fw.write("I have a dream!n");fw.write("you need to have a dream!");} catch (IOException e) {e.printStackTrace();} finally {//4.流资源的关闭if(fw != null){try {fw.close();} catch (IOException e) {e.printStackTrace();}}}}@Testpublic void testFileReaderFileWriter() {FileReader fr = null;FileWriter fw = null;try {//1.创建File类的对象,指明读入和写出的文件File srcFile = new File(&#");File destFile = new File(&#");//不能使用字符流来处理图片等字节数据
//            File srcFile = new File("爱情与友情.jpg");
//            File destFile = new File("爱情与友情1.jpg");//2.创建输入流和输出流的对象fr = new FileReader(srcFile);fw = new FileWriter(destFile);//3.数据的读入和写出操作char[] cbuf = new char[5];int len;//记录每次读入到cbuf数组中的字符的个数while((len = fr.read(cbuf)) != -1){//每次写出len个字符fw.write(cbuf,0,len);}} catch (IOException e) {e.printStackTrace();} finally {//4.关闭流资源//方式一:
//            try {
//                if(fw != null)
//                    fw.close();
//            } catch (IOException e) {
//                e.printStackTrace();
//            }finally{
//                try {
//                    if(fr != null)
//                        fr.close();
//                } catch (IOException e) {
//                    e.printStackTrace();
//                }
//            }//方式二:try {if(fw != null)fw.close();} catch (IOException e) {e.printStackTrace();}try {if(fr != null)fr.close();} catch (IOException e) {e.printStackTrace();}}}}
FileInputStream和FileOutputStream
package com.atguigu.java;import org.junit.Test;import java.io.*;/*** 测试FileInputStream和FileOutputStream的使用** 结论:* 1. 对于文本文件(.txt,.java,.c,.cpp),使用字符流处理* 2. 对于非文本文件(.jpg,.mp3,.mp4,.avi,.doc,.ppt,...),使用字节流处理**** @author shkstart* @create 2019 下午 2:13*/
public class FileInputOutputStreamTest {//使用字节流FileInputStream处理文本文件,可能出现乱码。@Testpublic void testFileInputStream() {FileInputStream fis = null;try {//1. 造文件File file = new File(&#");//2.造流fis = new FileInputStream(file);//3.读数据byte[] buffer = new byte[5];int len;//记录每次读取的字节的个数while((len = ad(buffer)) != -1){String str = new String(buffer,0,len);System.out.print(str);}} catch (IOException e) {e.printStackTrace();} finally {if(fis != null){//4.关闭资源try {fis.close();} catch (IOException e) {e.printStackTrace();}}}}/*实现对图片的复制操作*/@Testpublic void testFileInputOutputStream()  {FileInputStream fis = null;FileOutputStream fos = null;try {//File srcFile = new File("爱情与友情.jpg");File destFile = new File("爱情与友情2.jpg");//fis = new FileInputStream(srcFile);fos = new FileOutputStream(destFile);//复制的过程byte[] buffer = new byte[5];int len;while((len = ad(buffer)) != -1){fos.write(buffer,0,len);}} catch (IOException e) {e.printStackTrace();} finally {if(fos != null){//try {fos.close();} catch (IOException e) {e.printStackTrace();}}if(fis != null){try {fis.close();} catch (IOException e) {e.printStackTrace();}}}}//指定路径下文件的复制public void copyFile(String srcPath,String destPath){FileInputStream fis = null;FileOutputStream fos = null;try {//File srcFile = new File(srcPath);File destFile = new File(destPath);//fis = new FileInputStream(srcFile);fos = new FileOutputStream(destFile);//复制的过程byte[] buffer = new byte[1024];int len;while((len = ad(buffer)) != -1){fos.write(buffer,0,len);}} catch (IOException e) {e.printStackTrace();} finally {if(fos != null){//try {fos.close();} catch (IOException e) {e.printStackTrace();}}if(fis != null){try {fis.close();} catch (IOException e) {e.printStackTrace();}}}}@Testpublic void testCopyFile(){long start = System.currentTimeMillis();String srcPath = "C:\Users\Administrator\Desktop\01-视频.avi";String destPath = "C:\Users\Administrator\Desktop\02-视频.avi";//        String srcPath = &#";
//        String destPath = &#";copyFile(srcPath,destPath);long end = System.currentTimeMillis();System.out.println("复制操作花费的时间为:" + (end - start));//618}}
缓冲流
package com.atguigu.java;import org.junit.Test;import java.io.*;/*** 处理流之一:缓冲流的使用** 1.缓冲流:* BufferedInputStream* BufferedOutputStream* BufferedReader* BufferedWriter** 2.作用:提供流的读取、写入的速度*   提高读写速度的原因:内部提供了一个缓冲区** 3. 处理流,就是“套接”在已有的流的基础上。** @author shkstart* @create 2019 下午 2:44*/
public class BufferedTest {/*实现非文本文件的复制*/@Testpublic void BufferedStreamTest() throws FileNotFoundException {BufferedInputStream bis = null;BufferedOutputStream bos = null;try {//1.造文件File srcFile = new File("爱情与友情.jpg");File destFile = new File("爱情与友情3.jpg");//2.造流//2.1 造节点流FileInputStream fis = new FileInputStream((srcFile));FileOutputStream fos = new FileOutputStream(destFile);//2.2 造缓冲流bis = new BufferedInputStream(fis);bos = new BufferedOutputStream(fos);//3.复制的细节:读取、写入byte[] buffer = new byte[10];int len;while((len = ad(buffer)) != -1){bos.write(buffer,0,len);//                bos.flush();//刷新缓冲区}} catch (IOException e) {e.printStackTrace();} finally {//4.资源关闭//要求:先关闭外层的流,再关闭内层的流if(bos != null){try {bos.close();} catch (IOException e) {e.printStackTrace();}}if(bis != null){try {bis.close();} catch (IOException e) {e.printStackTrace();}}//说明:关闭外层流的同时,内层流也会自动的进行关闭。关于内层流的关闭,我们可以省略.
//        fos.close();
//        fis.close();}}//实现文件复制的方法public void copyFileWithBuffered(String srcPath,String destPath){BufferedInputStream bis = null;BufferedOutputStream bos = null;try {//1.造文件File srcFile = new File(srcPath);File destFile = new File(destPath);//2.造流//2.1 造节点流FileInputStream fis = new FileInputStream((srcFile));FileOutputStream fos = new FileOutputStream(destFile);//2.2 造缓冲流bis = new BufferedInputStream(fis);bos = new BufferedOutputStream(fos);//3.复制的细节:读取、写入byte[] buffer = new byte[1024];int len;while((len = ad(buffer)) != -1){bos.write(buffer,0,len);}} catch (IOException e) {e.printStackTrace();} finally {//4.资源关闭//要求:先关闭外层的流,再关闭内层的流if(bos != null){try {bos.close();} catch (IOException e) {e.printStackTrace();}}if(bis != null){try {bis.close();} catch (IOException e) {e.printStackTrace();}}//说明:关闭外层流的同时,内层流也会自动的进行关闭。关于内层流的关闭,我们可以省略.
//        fos.close();
//        fis.close();}}@Testpublic void testCopyFileWithBuffered(){long start = System.currentTimeMillis();String srcPath = "C:\Users\Administrator\Desktop\01-视频.avi";String destPath = "C:\Users\Administrator\Desktop\03-视频.avi";copyFileWithBuffered(srcPath,destPath);long end = System.currentTimeMillis();System.out.println("复制操作花费的时间为:" + (end - start));//618 - 176}/*使用BufferedReader和BufferedWriter实现文本文件的复制*/@Testpublic void testBufferedReaderBufferedWriter(){BufferedReader br = null;BufferedWriter bw = null;try {//创建文件和相应的流br = new BufferedReader(new FileReader(new File(&#")));bw = new BufferedWriter(new FileWriter(new File(&#")));//读写操作//方式一:使用char[]数组
//            char[] cbuf = new char[1024];
//            int len;
//            while((len = br.read(cbuf)) != -1){
//                bw.write(cbuf,0,len);
//    //            bw.flush();
//            }//方式二:使用StringString data;while((data = br.readLine()) != null){//方法一:
//                bw.write(data + "n");//data中不包含换行符//方法二:bw.write(data);//data中不包含换行符bw.newLine();//提供换行的操作}} catch (IOException e) {e.printStackTrace();} finally {//关闭资源if(bw != null){try {bw.close();} catch (IOException e) {e.printStackTrace();}}if(br != null){try {br.close();} catch (IOException e) {e.printStackTrace();}}}}}
转换流
package com.atguigu.java;import org.junit.Test;import java.io.*;/*** 处理流之二:转换流的使用* 1.转换流:属于字符流*   InputStreamReader:将一个字节的输入流转换为字符的输入流*   OutputStreamWriter:将一个字符的输出流转换为字节的输出流** 2.作用:提供字节流与字符流之间的转换** 3. 解码:字节、字节数组  --->字符数组、字符串*    编码:字符数组、字符串 ---> 字节、字节数组*** 4.字符集*ASCII:美国标准信息交换码。用一个字节的7位可以表示。ISO8859-1:拉丁码表。欧洲码表用一个字节的8位表示。GB2312:中国的中文编码表。最多两个字节编码所有字符GBK:中国的中文编码表升级,融合了更多的中文文字符号。最多两个字节编码Unicode:国际标准码,融合了目前人类使用的所有字符。为每个字符分配唯一的字符码。所有的文字都用两个字节来表示。UTF-8:变长的编码方式,可用1-4个字节来表示一个字符。*** @author shkstart* @create 2019 下午 4:25*/
public class InputStreamReaderTest {/*此时处理异常的话,仍然应该使用try-catch-finallyInputStreamReader的使用,实现字节的输入流到字符的输入流的转换*/@Testpublic void test1() throws IOException {FileInputStream fis = new FileInputStream(&#");
//        InputStreamReader isr = new InputStreamReader(fis);//使用系统默认的字符集//参数2指明了字符集,具体使用哪个字符集,取决于文件保存时使用的字符集InputStreamReader isr = new InputStreamReader(fis,"UTF-8");//使用系统默认的字符集char[] cbuf = new char[20];int len;while((len = ad(cbuf)) != -1){String str = new String(cbuf,0,len);System.out.print(str);}isr.close();}/*此时处理异常的话,仍然应该使用try-catch-finally综合使用InputStreamReader和OutputStreamWriter*/@Testpublic void test2() throws Exception {//1.造文件、造流File file1 = new File(&#");File file2 = new File("");FileInputStream fis = new FileInputStream(file1);FileOutputStream fos = new FileOutputStream(file2);InputStreamReader isr = new InputStreamReader(fis,"utf-8");OutputStreamWriter osw = new OutputStreamWriter(fos,"gbk");//2.读写过程char[] cbuf = new char[20];int len;while((len = ad(cbuf)) != -1){osw.write(cbuf,0,len);}//3.关闭资源isr.close();osw.close();}}
标准的输入、输出流
打印流
数据流
package com.atguigu.java;import org.junit.Test;import java.io.*;/*** 其他流的使用* 1.标准的输入、输出流* 2.打印流* 3.数据流** @author shkstart* @create 2019 下午 6:11*/
public class OtherStreamTest {/*1.标准的输入、输出流1.1System.in:标准的输入流,默认从键盘输入System.out:标准的输出流,默认从控制台输出1.2System类的setIn(InputStream is) / setOut(PrintStream ps)方式重新指定输入和输出的流。1.3练习:从键盘输入字符串,要求将读取到的整行字符串转成大写输出。然后继续进行输入操作,直至当输入“e”或者“exit”时,退出程序。方法一:使用Scanner实现,调用next()返回一个字符串方法二:使用System.in实现。System.in  --->  转换流 ---> BufferedReader的readLine()*/public static void main(String[] args) {BufferedReader br = null;try {InputStreamReader isr = new InputStreamReader(System.in);br = new BufferedReader(isr);while (true) {System.out.println("请输入字符串:");String data = br.readLine();if ("e".equalsIgnoreCase(data) || "exit".equalsIgnoreCase(data)) {System.out.println("程序结束");break;}String upperCase = UpperCase();System.out.println(upperCase);}} catch (IOException e) {e.printStackTrace();} finally {if (br != null) {try {br.close();} catch (IOException e) {e.printStackTrace();}}}}/*2. 打印流:PrintStream 和PrintWriter2.1 提供了一系列重载的print() 和 println()2.2 练习:*/@Testpublic void test2() {PrintStream ps = null;try {FileOutputStream fos = new FileOutputStream(new File("D:\IO\"));// 创建打印输出流,设置为自动刷新模式(写入换行符或字节 'n' 时都会刷新输出缓冲区)ps = new PrintStream(fos, true);if (ps != null) {// 把标准输出流(控制台输出)改成文件System.setOut(ps);}for (int i = 0; i <= 255; i++) { // 输出ASCII字符System.out.print((char) i);if (i % 50 == 0) { // 每50个数据一行System.out.println(); // 换行}}} catch (FileNotFoundException e) {e.printStackTrace();} finally {if (ps != null) {ps.close();}}}/*3. 数据流3.1 DataInputStream 和 DataOutputStream3.2 作用:用于读取或写出基本数据类型的变量或字符串练习:将内存中的字符串、基本数据类型的变量写出到文件中。注意:处理异常的话,仍然应该使用try-catch-finally.*/@Testpublic void test3() throws IOException {//1.DataOutputStream dos = new DataOutputStream(new FileOutputStream(&#"));//2.dos.writeUTF("刘建辰");dos.flush();//刷新操作,将内存中的数据写入文件dos.writeInt(23);dos.flush();dos.writeBoolean(true);dos.flush();//3.dos.close();}/*将文件中存储的基本数据类型变量和字符串读取到内存中,保存在变量中。注意点:读取不同类型的数据的顺序要与当初写入文件时,保存的数据的顺序一致!*/@Testpublic void test4() throws IOException {//1.DataInputStream dis = new DataInputStream(new FileInputStream(&#"));//2.String name = adUTF();int age = adInt();boolean isMale = adBoolean();System.out.println("name = " + name);System.out.println("age = " + age);System.out.println("isMale = " + isMale);//3.dis.close();}}
IO流
序列化过程
package com.atguigu.java;import org.junit.Test;import java.io.*;/*** 对象流的使用* 1.ObjectInputStream 和 ObjectOutputStream* 2.作用:用于存储和读取基本数据类型数据或对象的处理流。它的强大之处就是可以把Java中的对象写入到数据源中,也能把对象从数据源中还原回来。** 3.要想一个java对象是可序列化的,需要满足相应的要求。见Person.java** 4.序列化机制:* 对象序列化机制允许把内存中的Java对象转换成平台无关的二进制流,从而允许把这种* 二进制流持久地保存在磁盘上,或通过网络将这种二进制流传输到另一个网络节点。* 当其它程序获取了这种二进制流,就可以恢复成原来的Java对象。** @author shkstart* @create 2019 上午 10:27*/
public class ObjectInputOutputStreamTest {/*序列化过程:将内存中的java对象保存到磁盘中或通过网络传输出去使用ObjectOutputStream实现*/@Testpublic void testObjectOutputStream(){ObjectOutputStream oos = null;try {//1.oos = new ObjectOutputStream(new FileOutputStream("object.dat"));//2.oos.writeObject(new String("我爱北京天安门"));oos.flush();//刷新操作oos.writeObject(new Person("王铭",23));oos.flush();oos.writeObject(new Person("张学良",23,1001,new Account(5000)));oos.flush();} catch (IOException e) {e.printStackTrace();} finally {if(oos != null){//3.try {oos.close();} catch (IOException e) {e.printStackTrace();}}}}/*反序列化:将磁盘文件中的对象还原为内存中的一个java对象使用ObjectInputStream来实现*/@Testpublic void testObjectInputStream(){ObjectInputStream ois = null;try {ois = new ObjectInputStream(new FileInputStream("object.dat"));Object obj = adObject();String str = (String) obj;Person p = (Person) adObject();Person p1 = (Person) adObject();System.out.println(str);System.out.println(p);System.out.println(p1);} catch (IOException e) {e.printStackTrace();} catch (ClassNotFoundException e) {e.printStackTrace();} finally {if(ois != null){try {ois.close();} catch (IOException e) {e.printStackTrace();}}}}}
/*** Person需要满足如下的要求,方可序列化* 1.需要实现接口:Serializable* 2.当前类提供一个全局常量:serialVersionUID* 3.除了当前Person类需要实现Serializable接口之外,还必须保证其内部所有属性*   也必须是可序列化的。(默认情况下,基本数据类型可序列化)*** 补充:ObjectOutputStream和ObjectInputStream不能序列化static和transient修饰的成员变量**/
RandomAccessFile类
package com.atguigu.java;import org.junit.Test;import java.io.File;
import java.io.IOException;
import java.io.RandomAccessFile;/*** RandomAccessFile的使用* 1.RandomAccessFile直接继承于java.lang.Object类,实现了DataInput和DataOutput接口* 2.RandomAccessFile既可以作为一个输入流,又可以作为一个输出流** 3.如果RandomAccessFile作为输出流时,写出到的文件如果不存在,则在执行过程中自动创建。*   如果写出到的文件存在,则会对原有文件内容进行覆盖。(默认情况下,从头覆盖)** 4. 可以通过相关的操作,实现RandomAccessFile“插入”数据的效果** @author shkstart* @create 2019 上午 11:18*/
public class RandomAccessFileTest {@Testpublic void test1() {RandomAccessFile raf1 = null;RandomAccessFile raf2 = null;try {//1.raf1 = new RandomAccessFile(new File("爱情与友情.jpg"),"r");raf2 = new RandomAccessFile(new File("爱情与友情1.jpg"),"rw");//2.byte[] buffer = new byte[1024];int len;while((len = ad(buffer)) != -1){raf2.write(buffer,0,len);}} catch (IOException e) {e.printStackTrace();} finally {//3.if(raf1 != null){try {raf1.close();} catch (IOException e) {e.printStackTrace();}}if(raf2 != null){try {raf2.close();} catch (IOException e) {e.printStackTrace();}}}}@Testpublic void test2() throws IOException {RandomAccessFile raf1 = new RandomAccessFile(&#","rw");raf1.seek(3);//将指针调到角标为3的位置raf1.write("xyz".getBytes());//raf1.close();}/*使用RandomAccessFile实现数据的插入效果*/@Testpublic void test3() throws IOException {RandomAccessFile raf1 = new RandomAccessFile(&#","rw");raf1.seek(3);//将指针调到角标为3的位置//保存指针3后面的所有数据到StringBuilder中StringBuilder builder = new StringBuilder((int) new File(&#").length());byte[] buffer = new byte[20];int len;while((len = ad(buffer)) != -1){builder.append(new String(buffer,0,len)) ;}//调回指针,写入“xyz”raf1.seek(3);raf1.write("xyz".getBytes());//将StringBuilder中的数据写入到文件中raf1.String().getBytes());raf1.close();//思考:将StringBuilder替换为ByteArrayOutputStream}
}

本文发布于:2024-02-01 06:52:02,感谢您对本站的认可!

本文链接:https://www.4u4v.net/it/170674152434687.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

标签:基础   Java
留言与评论(共有 0 条评论)
   
验证码:

Copyright ©2019-2022 Comsenz Inc.Powered by ©

网站地图1 网站地图2 网站地图3 网站地图4 网站地图5 网站地图6 网站地图7 网站地图8 网站地图9 网站地图10 网站地图11 网站地图12 网站地图13 网站地图14 网站地图15 网站地图16 网站地图17 网站地图18 网站地图19 网站地图20 网站地图21 网站地图22/a> 网站地图23