不会有太多解释,直接贴图,我这是复习,以前大学学过Java

1、hello world

开发三步骤
编写程序、编译程序、运行程序
image.png
javac 编译Java文件,然后Java 运行
image.png

2、基础运算

3、三元运算符

a > b ? a : b ;
如果a>b ->true,则结果为a,如果a>b ->false,则结果为b
如下,输出结果为20
image.png
三个和尚案例
image.png

4、数据输入

import java.util.Scanner;
Scanner sc = new Scanner(System.in);
int weight1 = sc.nextInt();

  1. import java.util.Scanner;
  2. public class sannerTest{
  3. public static void main(String[] args){
  4. Scanner sc = new Scanner(System.in);
  5. System.out.println("shurudi1getizhong");
  6. int weight1 = sc.nextInt();
  7. System.out.println("shurudi2getizhong");
  8. int weight2 = sc.nextInt();
  9. System.out.println("shurudi3getizhong");
  10. int weight3 = sc.nextInt();
  11. int tempweight = weight1 > weight2 ? weight1 : weight2 ;
  12. int topweight = tempweight > weight3 ? tempweight : weight3 ;
  13. System.out.println("topweight:" + topweight);
  14. }
  15. }

image.png

5、分支运算

1、流程控制语句分类

顺序结构-就正常从上往下
分支结构 if , switch
循环结构for ,while ,do…while

2、分支结构

1、分支结构-if

image.png

  1. import java.util.Scanner;
  2. public class ifdemo05{
  3. public static void main(String[] args){
  4. System.out.println("helloworld");
  5. Scanner sc = new Scanner(System.in);
  6. int a = sc.nextInt();
  7. if (a >= 95 && a <= 100) {
  8. System.out.println("car");
  9. }
  10. else if(a >= 90 && a <= 94) {
  11. System.out.println("youlechang");
  12. }
  13. else if(a >= 80 && a <= 89) {
  14. System.out.println("wangju");
  15. }
  16. else if(a <= 79) {
  17. System.out.println("shijuan");
  18. }
  19. else {
  20. System.out.println("yiwai");
  21. }
  22. }
  23. }

2、分支结构switch

switch如果在命中case后,没有写break,会执行下一个case执行后break,前提是下一个case有break
image.png

  1. import java.util.Scanner;
  2. public class switchdemo02{
  3. public static void main(String[] args){
  4. System.out.println("helloworld");
  5. Scanner sc = new Scanner(System.in);
  6. int a = sc.nextInt();
  7. switch (a) {
  8. case 1:
  9. case 2:
  10. case 12:
  11. System.out.println("chuntian");
  12. break;
  13. case 3:
  14. case 4:
  15. case 5:
  16. System.out.println("xiatian");
  17. break;
  18. case 6:
  19. case 7:
  20. case 8:
  21. System.out.println("qiutian");
  22. break;
  23. case 9:
  24. case 10:
  25. case 11:
  26. System.out.println("dongtian");
  27. break;
  28. default:
  29. System.out.println("Error");
  30. break;
  31. }
  32. }
  33. }

3、循环结构

1、循环结构for

水仙花-三位-演示
image.png

  1. public class shuixianhua{
  2. public static void main(String[] args){
  3. int count = 0;
  4. for (int i = 100; i < 1000 ; i++ ) {
  5. int g = i%10 ;
  6. int s = i/10%10;
  7. int b = i/10/10%10;
  8. if (g*g*g + s*s*s + b*b*b == i) {
  9. count++;
  10. System.out.println(i);
  11. }
  12. }
  13. System.out.println(count);
  14. }
  15. }

2、while

在不确定上限的情况下可以使用while
image.png

  1. public class whiledemo01{
  2. public static void main(String[] args){
  3. System.out.println("helloworld");
  4. double paper = 0.1;
  5. int zf = 8844430;
  6. int count = 0;
  7. while (paper <= zf) {
  8. paper *= 2;
  9. count++;
  10. }
  11. System.out.println(count);
  12. }
  13. }

3、do…while

image.png

  1. public class dowhile{
  2. public static void main(String[] args){
  3. System.out.println("helloworld");
  4. int j = 1;
  5. do{
  6. System.out.println(j);
  7. j++;
  8. }while(j <= 5);
  9. }
  10. }

4、区别

image.png

4、跳转控制语句

continue和break使用在循环体中,一个是跳转出来继续循环,一个是直接结束
image.png

  1. public class tiaozhuandemo{
  2. public static void main(String[] args){
  3. System.out.println("helloworld");
  4. for (int i = 1; i <= 5 ; i++ ) {
  5. if (i%2 == 0) {
  6. continue;
  7. //break;
  8. }
  9. System.out.println(i);
  10. }
  11. }
  12. }

5、循环嵌套

image.png

4、random

获取随机数
image.png
random-猜数字
image.png

  1. import java.util.Random;
  2. import java.util.Scanner;
  3. public class caishuzi{
  4. public static void main(String[] args){
  5. System.out.println("helloworld");
  6. Random r = new Random();
  7. int num = r.nextInt(100)+1;
  8. while(true){
  9. Scanner sc = new Scanner(System.in);
  10. System.out.println("plzinput:");
  11. int guessNum = sc.nextInt();
  12. if (guessNum > num) {
  13. System.out.println("morethan");
  14. }else if (guessNum < num) {
  15. System.out.println("lessthan");
  16. }else {
  17. System.out.println("right");
  18. break;
  19. }
  20. }
  21. }
  22. }

n、比较器 Comparator

  1. package l;
  2. import java.util.Comparator;
  3. import java.util.TreeSet;
  4. public class chengjipaiming {
  5. public static void main(String[] args) {
  6. TreeSet<student> ts = new TreeSet<student>(new Comparator<student>() {
  7. @Override
  8. public int compare(student s1, student s2) {
  9. //int num = (s2.getChinese() + s2.getMath()) - (s1.getChinese() + s1.getMath());
  10. //上面这种求和的方法有些麻烦,可以在学生类里面提供一个求和的方法
  11. //传入的两个值进行比较,如果返回的是一个正数,说明前值比后值大
  12. //compare 方法 如果大于零,则把前一个数和后一个数交换 升序
  13. //此处,首先不用在意具体传入的,根据s1.getSum()代表的是前一个数,s2.getSum()的是后一个数
  14. // 因此这是在判断升序,可以使用后一个减前一个进行查看测试是否降序
  15. int num = s1.getSum()-s2.getSum();
  16. // int num = s1.getSum()-s2.getSum();
  17. // int num = 1;
  18. return num;
  19. }
  20. });
  21. student s1 = new student("lww",18,98,88);
  22. student s2 = new student("kww",18,100,100);
  23. student s3 = new student("jww",18,66,66);
  24. ts.add(s1);
  25. ts.add(s2);
  26. ts.add(s3);
  27. for (student s : ts){
  28. System.out.println(s.getName()+" "+s.getSum());
  29. }
  30. }
  31. }

image.png

n map-HashMap

  1. /**
  2. * 键是学生对象student,值是居住地String
  3. * 存储多个键值对对象
  4. * 遍历
  5. * 要求:保证键的唯一性:如果学生对象的成员变量值相同,就认为是同一个对象
  6. * hashmap底层是hash表,是保证键的唯一性,需要在学生类里面重写以下两个方法
  7. * hashCode()
  8. * equals()
  9. *
  10. * **/
  11. package mapjihe;
  12. import java.util.HashMap;
  13. import java.util.Set;
  14. public class hashmapdemo {
  15. public static void main(String[] args) {
  16. HashMap<student,String> hm = new HashMap<student,String>();
  17. student s1 = new student("周旋久",18);
  18. System.out.println(s1);
  19. student s2 = new student("林青霞",16);
  20. student s3 = new student("刘亦菲",16);
  21. //和上面的相同,按要求要保持唯一性,在student类里面重写方法保证,下面往集合对象中添加的时候,则会覆盖,杭州覆盖上海
  22. student s4 = new student("刘亦菲",16);
  23. hm.put(s1,"北京");
  24. hm.put(s2,"天津");
  25. hm.put(s3,"上海");
  26. hm.put(s4,"杭州");
  27. //这里注意,keySet()是返回所有键的集合,我们前面设置的是student是键
  28. Set<student> ks = hm.keySet();
  29. for (student k : ks){
  30. String value = hm.get(k);
  31. //这里因为键是学生对象,所以这里会打印这个学生对象的地址
  32. System.out.println(k);
  33. System.out.println("---------------1");
  34. //输出对象集合ks里面的值
  35. System.out.println(k.getName());
  36. System.out.println(k.getAge());
  37. System.out.println("---------------2");
  38. //value是根据键找到的值,所以会打印出前面的学生的地址,即北京等
  39. System.out.println(value);
  40. System.out.println("---------------3");
  41. //完整输出
  42. System.out.println(k.getName()+","+k.getAge()+","+value);
  43. System.out.println("---------------循环一轮");
  44. }
  45. }
  46. }

n+2 ArrayList嵌套HashMap

  1. /**
  2. * 创建一个ArrayList集合,存储三个元素,每一个元素都是HashMap,每一个HashMap的键值都是String,
  3. * 遍历集合
  4. * <p>
  5. * 思路:
  6. * 1 创建ArrayList集合
  7. * 2 创建HashMap集合,并添加键值对元素
  8. * 3 把HashMap作为元素添加到ArrayList集合
  9. * 4 遍历
  10. **/
  11. package mapjihe;
  12. import java.util.ArrayList;
  13. import java.util.HashMap;
  14. import java.util.Set;
  15. public class hashmapdemo01 {
  16. public static void main(String[] args) {
  17. ArrayList<HashMap<String, String>> arrayList = new ArrayList<HashMap<String, String>>();
  18. HashMap<String, String> hm1 = new HashMap<String, String>();
  19. hm1.put("刘亦菲", "胡歌");
  20. hm1.put("唐嫣", "霍建华");
  21. hm1.put("lyh", "lww");
  22. HashMap<String, String> hm2 = new HashMap<String, String>();
  23. hm1.put("刘亦菲1", "胡歌1");
  24. hm1.put("唐嫣1", "霍建华1");
  25. hm1.put("lyh1", "lww1");
  26. HashMap<String, String> hm3 = new HashMap<String, String>();
  27. hm1.put("刘亦菲2", "胡歌2");
  28. hm1.put("唐嫣2", "霍建华2");
  29. hm1.put("lyh2", "lww2");
  30. arrayList.add(hm1);
  31. arrayList.add(hm2);
  32. arrayList.add(hm3);
  33. //这里hm本身就是一个hashmao集合,不能直接输出hm
  34. for (HashMap<String, String> hm : arrayList) {
  35. //先获取hashmap集合的键的集合
  36. Set<String> keyset = hm.keySet();
  37. for (String ky : keyset) {
  38. //这里需要注意,keyset中是键的集合,所以需要通过hm获取hashmap集合中的值
  39. String value = hm.get(ky);
  40. System.out.println(ky + ":" + value);
  41. }
  42. }
  43. }
  44. }

n+3 HashMap嵌套ArrayList

  1. /**
  2. * 创建一个Hashmap集合,存储三个键值对元素,每一个元素的键是String,值是ArrayList,每一个ArrayList的元素都是String,
  3. * 遍历集合
  4. *
  5. * **/
  6. package mapjihe;
  7. import java.util.ArrayList;
  8. import java.util.HashMap;
  9. import java.util.Set;
  10. public class hashmapdemo02 {
  11. public static void main(String[] args) {
  12. HashMap<String,ArrayList<String>> hm = new HashMap<String,ArrayList<String>>();
  13. ArrayList<String> array1 = new ArrayList<String>();
  14. array1.add("可口可乐");
  15. array1.add("百世可乐");
  16. ArrayList<String> array2 = new ArrayList<String>();
  17. array2.add("kfc");
  18. array2.add("麦当劳");
  19. ArrayList<String> array3 = new ArrayList<String>();
  20. array3.add("雪花");
  21. array3.add("青岛");
  22. hm.put("饮料",array1);
  23. hm.put("食品",array2);
  24. hm.put("酒",array3);
  25. Set<String> ky = hm.keySet();
  26. for (String k : ky){
  27. ArrayList<String> value = hm.get(k);
  28. System.out.println(k);
  29. for (String s : value){
  30. System.out.println("\t"+s);
  31. }
  32. System.out.print("\n");
  33. }
  34. }
  35. }

n+4 HashMap计算字符串内某一字符出现次数

  1. /**
  2. * 统计字符串中每个字符出现的次数
  3. * 思路
  4. * 键盘录入一个字符
  5. * 创建hashmap集合 键是chaarater 值是integer
  6. * 遍历字符串,得到每一个字符
  7. * 拿到的每一个字符 作为 键 到 hashmap集合中去找对应的值,看其返回值
  8. * 如果返回值是null,说明该字符在hashmap集合中不存在,就把该字符作为键,1作为值存储
  9. * 如果返回值不是null,说明该字符在hashmap集合中存在,把该值加1,然后重新存储该字符和对应的值
  10. * 遍历hashmap集合,得到键和值,按照要求进行拼接
  11. * **/
  12. package mapjihe;
  13. import java.util.HashMap;
  14. import java.util.Scanner;
  15. import java.util.Set;
  16. import java.util.TreeMap;
  17. public class hashmapdemo02 {
  18. public static void main(String[] args) {
  19. Scanner sc = new Scanner(System.in);
  20. System.out.println("请输入一个字符串");
  21. String line = sc.nextLine();
  22. HashMap<Character,Integer> hm = new HashMap<Character,Integer>();
  23. //TreeMap和HashMap用法一样,不过它默认会自动排序结果,不是无序
  24. // TreeMap<Character,Integer> hm = new TreeMap<Character,Integer>();
  25. //遍历字符串,得到每一个字符
  26. //输入字符aac
  27. for (int i = 0; i<line.length();i++){
  28. //a a c 会依次提取出来
  29. char key = line.charAt(i);
  30. //拿到的每一个字符作为键到hashmap集合中去找对应的值,看其返回值
  31. //这里面有一个自动装箱动作,暂时不理他,具体原理记不清了
  32. //注意这个地方,实际上是已经在查hashmap集合中是否存在这个key了
  33. //比如,第一个a 这里就是Integer value = hm.get(a),查找key a的值
  34. //很明显,之前没有存储,这里查找key a 是没有对应的值的,是null 打印查看确实是null
  35. Integer value = hm.get(key);
  36. System.out.println(value);
  37. if (value == null){
  38. //注意,这里1就是value
  39. //因为当第一个key a查值后,就进入了if语句,key 就是 a ,这里实际是hm.put(a,1);
  40. //因此,这个1,就是value
  41. //所有else部分的value,在第二个a进入的时候,发现key a 是存在值value的,值是1,所以可以value++
  42. hm.put(key,1);
  43. }else {
  44. //如果返回值不是null,说明该字符在hashmap集合中存在,把该值加1,然后重新存储该字符和对应的值
  45. //自动拆箱
  46. value++;
  47. System.out.println("wy"+value);
  48. hm.put(key,value);
  49. System.out.println(hm.get(key));
  50. }
  51. }
  52. //遍历hashmap集合,得到键和值,按照要求进行拼接
  53. StringBuilder sb = new StringBuilder();
  54. Set<Character> keySet = hm.keySet();
  55. for (Character key : keySet){
  56. Integer value = hm.get(key);
  57. sb.append(key).append("(").append(value).append(")");
  58. }
  59. String res = sb.toString();
  60. System.out.println(res);
  61. }
  62. }

n+5 ArrayList存储学生对象,使用Collections对ArrayList进行排序

  1. /**
  2. * 需求:ArrayList存储学生对象,使用Collections对ArrayList进行排序
  3. * 按照年龄从小到大进行排序,年龄相同时,按照姓名的首字母顺序排序
  4. *
  5. * 思路:
  6. *1、定义学生类
  7. * 2、创建arraylist集合对象
  8. * 3、创建学生对象
  9. * 4、把学生添加到集合
  10. * 5、使用Collections对ArrayList集合排序
  11. * 遍历集合
  12. *
  13. * **/
  14. package collectionsdemo;
  15. import java.util.ArrayList;
  16. import java.util.Collections;
  17. import java.util.Comparator;
  18. public class collectionsdemo2 {
  19. public static void main(String[] args) {
  20. ArrayList<student> arrayList = new ArrayList<student>();
  21. student s1 = new student("liuyifei",18);
  22. student s2 = new student("linqingxia",30);
  23. student s3 = new student("nazha",18);
  24. student s4 = new student("luoyihua",18);
  25. arrayList.add(s1);
  26. arrayList.add(s2);
  27. arrayList.add(s3);
  28. arrayList.add(s4);
  29. //使用collections对ArrayList集合进排序
  30. //会报错,因为这个是自然排序的,列表中的所有元素都必须实现Comparable接口。我们需要到类中重写。 不用这个方法
  31. // Collections.sort(arrayList);
  32. //public static <T> void sort(List<T> list, Comparator<? super T> c)
  33. //根据指定比较器引发的顺序对指定列表进行排序。
  34. //使用内部类的形式进行比较
  35. Collections.sort(arrayList, new Comparator<student>() {
  36. @Override
  37. public int compare(student s1, student s2) {
  38. //按照年龄从小到大进行排序,年龄相同时,按照姓名的首字母顺序排序
  39. int num = s1.getAge()-s2.getAge();
  40. int num2 = (num==0)?s1.getName().compareTo(s2.getName()):num;
  41. return num2;
  42. }
  43. });
  44. //遍历集合
  45. for (student s : arrayList){
  46. System.out.println(s.getAge()+","+s.getName());
  47. }
  48. }
  49. }

n+6 斗地主简单案例发牌洗牌看牌

  1. /**
  2. * 使用一个hashmap进行牌的存储(编号:牌值),使用一个arraylist进行牌的编号存储,使用treemap进行用户拿到的牌的有序排序
  3. * 这样对编号进行treemap排序,那么读取出来的就是按照编号顺序去hashmap里面读取
  4. * **/
  5. package doudizhu;
  6. import java.util.*;
  7. public class pokerdemo1 {
  8. public static void main(String[] args) {
  9. //创建HashMap 键是编号,值是牌
  10. HashMap<Integer,String> hm = new HashMap<Integer,String>();
  11. //创建ArrayList 存储编号
  12. ArrayList<Integer> array = new ArrayList<Integer>();
  13. //定义花色数组
  14. String[] colors = {"♦", "♣", "♥", "♠"};
  15. //定义点数数组
  16. String[] numbers = {"3", "4", "5", "6", "7", "8", "9", "10", "J", "Q", "K", "A","2"};
  17. //从0开始往HashMap里面存储编号,并存储对应的牌,同时往ArrayList里面存储编号
  18. int index =0;
  19. for (String number :numbers){
  20. for (String color:colors){
  21. hm.put(index,color+number);
  22. array.add(index);
  23. index++;
  24. }
  25. }
  26. hm.put(index,"小王");
  27. array.add(index);
  28. index++;
  29. hm.put(index,"大王");
  30. array.add(index);
  31. //洗牌,洗的是编号
  32. Collections.shuffle(array);
  33. //发牌(发的也是编号,为了保证排序,创建TreeSet集合)
  34. TreeSet<Integer> lqxSet = new TreeSet<Integer>();
  35. TreeSet<Integer> lySet = new TreeSet<Integer>();
  36. TreeSet<Integer> fqySet = new TreeSet<Integer>();
  37. TreeSet<Integer> dpSet = new TreeSet<Integer>();
  38. //注意,以下是对索引进行操作
  39. // 这里也可以直接使用i,但是会让代码可读性变低,因此多写一行x,x获取的就是array集合里面存放的索引
  40. for (int i =0;i<array.size();i++){
  41. int x = array.get(i);
  42. if (i>=array.size()-3){
  43. dpSet.add(array.get(x));
  44. }else if (i%3==0){
  45. lqxSet.add(x);
  46. }else if (i%3==1){
  47. lySet.add(x);
  48. }else if (i%3==2){
  49. fqySet.add(x);
  50. }
  51. }
  52. //看牌
  53. lookpoker("lqx",lqxSet,hm);
  54. lookpoker("ly",lySet,hm);
  55. lookpoker("fqy",fqySet,hm);
  56. lookpoker("dp",dpSet,hm);
  57. }
  58. //定义方法看牌
  59. public static void lookpoker(String name,TreeSet<Integer> ts,HashMap<Integer,String> hm){
  60. System.out.println(name + "的牌是:");
  61. for (Integer key :ts){
  62. String poker = hm.get(key);
  63. System.out.print(poker + " ");
  64. }
  65. System.out.println();
  66. }
  67. }

n+7 递归求阶乘

  1. /**
  2. * 递归求5的阶乘
  3. * 分析:
  4. * 阶乘:5!=5*4*3*2*1
  5. * 递归出口:1!=1
  6. * 递归规则:n!=n*(n-1)! 即 5!=5*4!=5*4*3!=5*4*3*2!=5*4*3*2*1
  7. * 当1!=1的时候,会结束递归
  8. * **/
  9. package diguidemo;
  10. public class diguidemo01 {
  11. public static void main(String[] args) {
  12. int res = jc(3);
  13. System.out.println("5的阶乘是:" + res);
  14. }
  15. //定义一个方法,用于递归求阶乘,参数为一个int类型的变量
  16. /**
  17. * 分析:
  18. * 假设我们传入一个n=3
  19. * jc(3)-->3*jc(3-1)
  20. * 注意,这个时候,jc(3)这个方法是被调用中,因为返回的里面有一个调用了jc(2)
  21. * 所以,jc(3)是还在被调用中的,它需要等jc(2)计算完,返回值后,jc(3)使用了该返回值后,方法才调用完毕,从栈内存中结束
  22. * jc(2)-->2*jc(2-1)
  23. * 同理上面的
  24. * jc(1)-->n=1-->1
  25. *
  26. * 返回
  27. * jc(3)等待jc(2)的结果
  28. * jc(2)等待jc(1)的结果
  29. * jc(1)返回1给jc(2)
  30. * jc(2)得到jc(1)的值,完成了jc(2)的计算,得到一个值,返回给jc(3)
  31. * jc(3)得到jc(2)返回的值,完成jc(3)的计算,得到一个值,这个值就是3的阶乘
  32. *
  33. * jc(1)=1 1返回给jc(2)
  34. * jc(2)=2*jc(2-1)=2*1=2 2返回给jc(3)
  35. * jc(3)=3*jc(3-1)=3*2=6
  36. *
  37. * **/
  38. public static int jc(int n){
  39. //在方法内部判断该变量的值是否是1
  40. if (n==1){
  41. //是 返回1
  42. return 1;
  43. }else {
  44. //不是 返回n*(n-1)!
  45. return n*jc(n-1);
  46. }
  47. }
  48. }

n+8 递归遍历目录

  1. /**
  2. * 递归输出目录
  3. * D:\burp
  4. * 步骤:
  5. * 1、根据给定的路径创建一个File对象
  6. * 2、定义一个方法,用于获取给定目录下的所有内容,参数为第一步的File对象
  7. * 3、获取给的目录下面的所有文件或者目录的File数组
  8. * 4、遍历该数组,得到每一个File对象
  9. * 5、判断File对象是否是目录
  10. * 是,递归调用
  11. * 不是,获取绝对路径输出
  12. * 6、
  13. * **/
  14. package diguidemo;
  15. import java.io.File;
  16. public class diguidemo02 {
  17. public static void main(String[] args) {
  18. File srcFile = new File("D:\\burp");
  19. //调用写好的递归查询目录文件方法,该方法写了传参对象是File对象
  20. getAllFilePath(srcFile);
  21. }
  22. //定义一个方法,用于获取给定目录下的所有内容,参数为第一步的File对象
  23. public static void getAllFilePath(File srcaFile){
  24. //获取给的目录下面的所有文件或者目录的File数组
  25. File[] fileArray = srcaFile.listFiles();
  26. //遍历该数组,得到每一个File对象
  27. if (fileArray != null){
  28. for (File file : fileArray){
  29. //判断是File对象是否是目录
  30. if (file.isDirectory()){
  31. //是目录则递归调用方法
  32. getAllFilePath(file);
  33. }else {
  34. //不是目录,则获取绝对路径进行输出
  35. System.out.println(file.getAbsolutePath());
  36. }
  37. }
  38. }
  39. }
  40. }

IO流

IO-字节流readme

  1. IO流分类:
  2. 按数据流方向
  3. 1、输入流:读数据
  4. 2、输出流:写数据
  5. 按照数据类型来分
  6. 1、字节流:
  7. 字节输入流,字节输出流
  8. 2、字符流:
  9. 字符输入流,字符输出流
  10. 一般情况,我们说的IO流的分类是按照数据类型来分的
  11. 如何判断什么情况使用什么流:
  12. 如果使用windows自带的记事本软件打开,可以读懂,就是用字符流
  13. 否则使用字节流
  14. 如果不知道该使用哪种类型的流,就是用字节流
  15. 一、字节流
  16. 1、输入流
  17. public abstract class InputStream
  18. extends Object
  19. implements Closeable
  20. 此抽象类是表示输入字节流的所有类的超类。
  21. 已知直接子类:
  22. AudioInputStream ByteArrayInputStream FileInputStream FilterInputStream ObjectInputStream
  23. PipedInputStream SequenceInputStream StringBufferInputStream
  24. 文件输入流
  25. FileInputStream用于读取诸如图像数据的原始字节流
  26. FileInputStream(String name)
  27. 通过打开与实际文件的连接来创建 FileInputStream ,该文件由文件系统中的路径名 name命名。
  28. 2、输出流
  29. public abstract class OutputStream
  30. extends Object
  31. implements Closeable, Flushable
  32. 此抽象类是表示输出字节流的所有类的超类。 输出流接受输出字节并将它们发送到某个接收器。
  33. 已知直接子类:
  34. ByteArrayOutputStream FileOutputStream FilterOutputStream ObjectOutputStream PipedOutputStream
  35. 文件输出流
  36. FileOutputStream用于写入诸如图像数据的原始字节流
  37. 3、字节缓冲流
  38. 提高读写效率
  39. 缓冲输出流
  40. Class BufferedOutputStream
  41. java.lang.Object
  42. java.io.OutputStream
  43. java.io.FilterOutputStream
  44. java.io.BufferedOutputStream
  45. 实现的所有接口
  46. Closeable Flushable AutoCloseable
  47. public class BufferedOutputStream
  48. extends FilterOutputStream
  49. 该类实现缓冲输出流。 通过设置这样的输出流,应用程序可以将字节写入基础输出流,而不必为写入的每个字节调用底层系统。
  50. 缓冲输入流
  51. Class BufferedInputStream
  52. java.lang.Object
  53. java.io.InputStream
  54. java.io.FilterInputStream
  55. java.io.BufferedInputStream
  56. public class BufferedInputStream
  57. extends FilterInputStream
  58. BufferedInputStream向另一个输入流添加功能 - 即缓冲输入并支持markreset方法的功能。
  59. 创建BufferedInputStream将创建内部缓冲区阵列。 当读取或跳过来自流的字节时,
  60. 内部缓冲区根据需要从包含的输入流中重新填充,一次多个字节。 mark操作会记住输入流中的一个点,
  61. 并且reset操作会导致在从包含的输入流中获取新字节之前重新读取自最近的mark操作以来读取的所有字节。
  62. 缓冲流的构造方法:
  63. BufferedInputStream(InputStream in)
  64. 创建一个 BufferedInputStream并保存其参数,即输入流 in ,供以后使用。
  65. BufferedOutputStream(OutputStream out)
  66. 创建新的缓冲输出流以将数据写入指定的基础输出流。
  67. 注意:缓冲流需要的是字节流,而不是具体的文件或者路径
  68. 因为字节缓冲流仅仅提高缓冲区,而真正的读写数据还得依靠基本的字节流对象进行操作

IO-字节流写数据

  1. /**
  2. * 数据读写操作练习
  3. * FileOutputStream用于写入诸如图像数据的原始字节流
  4. * FileOutputStream(String name):创建文件输出流以写入具有指定名称的文件。
  5. **/
  6. package diguidemo;
  7. import java.io.FileNotFoundException;
  8. import java.io.FileOutputStream;
  9. //下面这个是上面FileNotFoundException的父类,所以上面的会变灰色
  10. import java.io.IOException;
  11. public class iodemo01 {
  12. public static void main(String[] args) throws IOException {
  13. //创建字节输出流对象
  14. //创建着对象,会做三个事情:
  15. // 1、调用系统功能创建文件
  16. // 2、创建了字节输出流对象
  17. // 3、让字节输出流对象指向创建好的文件
  18. FileOutputStream fos = new FileOutputStream("javaSdemo\\src\\diguidemo\\fos.txt");
  19. // write(int b)
  20. //将指定的字节写入此文件输出流。在文件中看到的是a a的字节数是97
  21. fos.write(97);
  22. //所有io相关的操作,都要释放资源
  23. fos.close();
  24. }
  25. }

IO-字节流写数据的三种方法

  1. /**写数据的三种方式**/
  2. package iodemo;
  3. import java.io.File;
  4. import java.io.FileNotFoundException;
  5. import java.io.FileOutputStream;
  6. import java.io.IOException;
  7. import java.nio.charset.StandardCharsets;
  8. public class iodemoh01 {
  9. public static void main(String[] args) throws IOException {
  10. //第一种创建文件输出流对象的方法
  11. FileOutputStream fos = new FileOutputStream("xiayijieduan\\src\\iodemo\\fos.txt");
  12. /**
  13. * public FileOutputStream(String name) throws FileNotFoundException {
  14. * this(name != null ? new File(name) : null, false);
  15. * }
  16. * **/
  17. //上面这个等于下面这个
  18. // FileOutputStream fos = new FileOutputStream(new File("xiayijieduan\src\iodemo\fos.txt"));
  19. //第二种创建文件输出流对象的方法
  20. // FileOutputStream(File file): 创建文件输出流以写入由指定的File对象表示的文件
  21. File file = new File("xiayijieduan\\src\\iodemo\\fos.txt");
  22. FileOutputStream fos2 = new FileOutputStream(file);
  23. //上面这两个加起来就是下面着
  24. // FileOutputStream fos2 = new FileOutputStream(new File("xiayijieduan\src\iodemo\fos.txt"));
  25. //观察可以发现,这个和第一个是一样的,所以直接用第一个,是最方便的
  26. //void write(int b) 方式1
  27. // fos.write(97);
  28. // fos.write(98);
  29. //void write(byte[] b) 方式2
  30. // byte[] bys = {97,98,99,100,101};
  31. // fos.write(bys);
  32. // byte[] bys = "abcdef".getBytes(StandardCharsets.UTF_8);
  33. // fos.write(bys);
  34. //void write(byte[] b,int off,int len)
  35. byte[] bys = "abcdef".getBytes(StandardCharsets.UTF_8);
  36. fos.write(bys,1,3);
  37. fos.close();
  38. }
  39. }

IO-字节流写数据:换行 追加

  1. /**
  2. * 追加
  3. * 换行
  4. * **/
  5. package iodemo;
  6. import java.io.FileOutputStream;
  7. import java.io.IOException;
  8. import java.nio.charset.StandardCharsets;
  9. public class iodemoh02 {
  10. public static void main(String[] args) throws IOException {
  11. // FileOutputStream fos = new FileOutputStream("xiayijieduan\\src\\iodemo\\fos1.txt");
  12. //使用构造方法进行追加操作
  13. FileOutputStream fos = new FileOutputStream("xiayijieduan\\src\\iodemo\\fos1.txt",true);
  14. for (int i = 0;i<10;i++){
  15. fos.write("hello".getBytes(StandardCharsets.UTF_8));
  16. //这种方式,在idea里面看是换行了,但是在windows上面看,是没有换行的
  17. /**
  18. * 换行
  19. * window:\r\n
  20. * linux:\n
  21. * mac:\r
  22. * **/
  23. fos.write("\r\n".getBytes(StandardCharsets.UTF_8));
  24. }
  25. fos.close();
  26. }
  27. }

IO-字节流写数据-异常处理-finally

  1. package iodemo;
  2. import java.io.FileOutputStream;
  3. import java.io.IOException;
  4. import java.nio.charset.StandardCharsets;
  5. public class iodemoh03 {
  6. public static void main(String[] args) {
  7. FileOutputStream fos = null;
  8. try {
  9. fos = new FileOutputStream("xiayijieduan\\src\\iodemo\\fos2.txt", true);
  10. fos.write("hello".getBytes(StandardCharsets.UTF_8));
  11. fos.close();
  12. }catch (IOException e){
  13. e.printStackTrace();
  14. }finally {
  15. if (fos != null){
  16. try {
  17. fos.close();
  18. }catch (IOException e){
  19. e.printStackTrace();
  20. }
  21. }
  22. }
  23. }
  24. }

IO-读数据

  1. /**
  2. *
  3. * 字节流读取数据
  4. *
  5. * **/
  6. package iodemo;
  7. import java.io.FileInputStream;
  8. import java.io.FileNotFoundException;
  9. import java.io.IOException;
  10. public class iodemoh04 {
  11. public static void main(String[] args) throws IOException {
  12. //创建字节输入流对象
  13. FileInputStream fis = new FileInputStream("xiayijieduan\\src\\iodemo\\fos1.txt");
  14. //调用字节输入流对象的读数据方法
  15. //int read() : 从该输入流读取一个字节的数据,如果文件到达末尾,返回值是-1
  16. //第一次读取数据
  17. // int by = fis.read();
  18. // System.out.println(by);
  19. // System.out.println((char)by);
  20. // //第二次读取数据
  21. // by = fis.read();
  22. // System.out.println(by);
  23. // System.out.println((char)by);
  24. //循环写 方式1
  25. // int by = fis.read();
  26. // while (by != -1){
  27. //// System.out.print(by);
  28. // System.out.print((char)by);
  29. // by = fis.read();
  30. // }
  31. //循环写 方式2
  32. int by;
  33. while ((by=fis.read()) != -1){
  34. System.out.print((char) by);
  35. }
  36. //释放资源
  37. fis.close();
  38. }
  39. }

IO-简单复制

  1. /**
  2. * 复制文件
  3. *
  4. *
  5. * **/
  6. package iodemo;
  7. import java.io.FileInputStream;
  8. import java.io.FileOutputStream;
  9. import java.io.IOException;
  10. public class iodemoh05 {
  11. public static void main(String[] args) throws IOException {
  12. //根据数据源创建字节输入流对象
  13. FileInputStream fis = new FileInputStream("xiayijieduan\\src\\iodemo\\fos1.txt");
  14. //根据目的地创建字节输出流对象
  15. FileOutputStream fos = new FileOutputStream("xiayijieduan\\src\\iodemo\\fos2.txt");
  16. //读写数据
  17. int by;
  18. while ((by = fis.read()) != -1){
  19. fos.write(by);
  20. }
  21. //释放资源
  22. fos.close();
  23. fis.close();
  24. }
  25. }

IO-字节流读数据,一次读一个字节数组数据

  1. /**
  2. * 字节流读数据,一次读一个字节数组数据
  3. *
  4. * 使用字节输入流读数据的步骤
  5. * 创建字节输入流对象
  6. * 调用字节输入流对象的读数据方法
  7. * 释放资源
  8. *
  9. * **/
  10. package iodemo;
  11. import java.io.FileInputStream;
  12. import java.io.IOException;
  13. public class iodemoh06 {
  14. public static void main(String[] args) throws IOException {
  15. FileInputStream fis = new FileInputStream("xiayijieduan\\src\\iodemo\\fos1.txt");
  16. /**
  17. //调用方法读数据
  18. //int read(byte[] b) 从该输入流读取最多b.length个字节的数据 到 一个字节数组。 下面的b.length就是被设定成5个字节
  19. byte[] bys = new byte[5];
  20. //第一次读取数据
  21. //这里的len是读取到的数据的字节个数,而不是上面写的字节数组的长度
  22. int len = fis.read(bys);
  23. System.out.println(len); //输出5
  24. //读取的过来的是字节数组,转换
  25. System.out.println(bys);
  26. System.out.println(new String(bys));
  27. System.out.println("------------");
  28. //第二次读取数据
  29. len = fis.read(bys);
  30. System.out.println(len);
  31. System.out.println(new String(bys));
  32. System.out.println("------------");
  33. //第三次读取数据
  34. len = fis.read(bys);
  35. System.out.println(len);
  36. System.out.println(new String(bys));
  37. // //读取从0到能读取到的字节个数,上面可以看出,因为源文件中只剩下4个字节没有被读取,所以len是4,只会读4个数据,输出的时候,没有上一个的r
  38. // 上面的都应该变成这种写法
  39. // System.out.println(new String(bys,0,len));
  40. System.out.println("------------");
  41. /**
  42. * 其实读取的内容是:
  43. * hello\r\n
  44. * world\r\n
  45. *
  46. * 第一次读取:
  47. * hello
  48. * 第二次读取:
  49. * \r\nwor
  50. * 第三次读取:
  51. * ld\r\nr
  52. * 第三次的最后一个r是因为第一次读取的数据,存放了5个字节的的数据 到 字节数组bys中 -->hello
  53. * 第二次读取,也有5个字节的数据 \r\nwor 覆盖了 hello 这时bys中 -->\r\nwor
  54. * 第三次读取,源文件就只有 ld\r\n 只有4个数据,不能全部覆盖,就会留下来一个r -->ld\r\nr
  55. * 使用别的方法可以读了几个就写几个
  56. * public String(byte[] bytes,
  57. * int offset,
  58. * int length)
  59. *
  60. *
  61. * **/
  62. //循环改进代码
  63. byte[] bys = new byte[1024];
  64. int len;
  65. while ((len = fis.read(bys)) != -1){
  66. System.out.println(new String(bys,0,len));
  67. }
  68. //释放资源
  69. fis.close();
  70. }
  71. }

IO-复制图片

  1. /**
  2. * 复制图片
  3. * 思路
  4. * 根据数据源创建字节输入流对象
  5. * 根据目的地创建字节输出流对象
  6. * 读写数据,复制图片,一次读取一个字节数组,一次写入一个字节数组
  7. * 释放资源
  8. * **/
  9. package iodemo;
  10. import java.io.FileInputStream;
  11. import java.io.FileOutputStream;
  12. import java.io.IOException;
  13. public class iodemoh07 {
  14. public static void main(String[] args) throws IOException {
  15. //根据数据源创建字节输入流对象
  16. FileInputStream fis = new FileInputStream("C:\\Users\\77239\\Pictures\\Saved Pictures\\11.jpg");
  17. //根据目的地创建字节输出流对象
  18. FileOutputStream fos = new FileOutputStream("xiayijieduan\\src\\iodemo\\11.jpg");
  19. //读写数据,复制图片,一次读取一个字节数组,一次写入一个字节数组
  20. byte[] bys = new byte[1024];
  21. int len;
  22. while ((len=fis.read(bys))!=-1){
  23. fos.write(bys,0,len);
  24. }
  25. //释放资源
  26. fis.close();
  27. fos.close();
  28. }
  29. }

IO-缓冲字节流.读写数据

  1. package iodemo;
  2. import java.io.*;
  3. import java.nio.charset.StandardCharsets;
  4. public class iodemoh08 {
  5. public static void main(String[] args) throws IOException {
  6. //BufferedOutputStream(OutputStream out)
  7. //先创建一个文件输出流对象
  8. // FileOutputStream fos = new FileOutputStream("xiayijieduan\\src\\iodemo\\fos1.txt");
  9. // 再创建一个字节缓冲输出流对象
  10. // BufferedOutputStream bos = new BufferedOutputStream(fos);
  11. //上面可以写成下面这个
  12. //写数据
  13. /*
  14. BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream("xiayijieduan\\src\\iodemo\\fos3.txt"));
  15. //写数据
  16. bos.write("hello\r\n".getBytes(StandardCharsets.UTF_8));
  17. bos.write("javaworld\r\n".getBytes(StandardCharsets.UTF_8));
  18. bos.close();
  19. */
  20. //读数据,同理写数据
  21. BufferedInputStream bis = new BufferedInputStream(new FileInputStream("xiayijieduan\\src\\iodemo\\fos3.txt"));
  22. //读取方式1 一次读取一个字节数据
  23. // int by;
  24. // while ((by=bis.read())!=-1){
  25. // System.out.print((char) by);
  26. // }
  27. //读取方式2 一次读取一个字节数组数据
  28. byte[] bys = new byte[1024];
  29. int len;
  30. while ((len=bis.read(bys))!=-1){
  31. System.out.println(new String(bys,0,len));
  32. }
  33. bis.close();
  34. }
  35. }

IO-字节流复制视频

  1. package IOdemo;
  2. import java.io.*;
  3. public class CopyAvdemo {
  4. public static void main(String[] args) throws IOException {
  5. //记录开始时间
  6. long startTime = System.currentTimeMillis();
  7. //复制视频
  8. method1();//耗时40352毫秒
  9. // method2();//耗时100毫秒
  10. // method3();//耗时232毫秒
  11. // method4();//耗时32毫秒
  12. //记录结算时间
  13. long endTime = System.currentTimeMillis();
  14. System.out.println("耗时"+(endTime-startTime)+"毫秒");
  15. }
  16. //方法4 字节缓冲流,一次读写一个字节数组
  17. public static void method4() throws IOException{
  18. BufferedInputStream bis = new BufferedInputStream(new FileInputStream("D:\\workspace\\video\\datui01.mp4"));
  19. BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream("D:\\workspace\\video1\\datui04.mp4"));
  20. byte[] bys = new byte[1024];
  21. int len;
  22. while ((len=bis.read(bys))!=-1){
  23. bos.write(bys,0,len);
  24. }
  25. bis.close();
  26. bos.close();
  27. }
  28. //方法3 字节缓冲流,一次读写一个字节
  29. public static void method3() throws IOException{
  30. BufferedInputStream bis = new BufferedInputStream(new FileInputStream("D:\\workspace\\video\\datui01.mp4"));
  31. BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream("D:\\workspace\\video1\\datui03.mp4"));
  32. int by;
  33. while ((by=bis.read())!=-1){
  34. bos.write(by);
  35. }
  36. bis.close();
  37. bos.close();
  38. }
  39. //方法2 基本字节流,一次读写一个字节数组
  40. public static void method2() throws IOException {
  41. FileInputStream fis = new FileInputStream("D:\\workspace\\video\\datui01.mp4");
  42. FileOutputStream fos = new FileOutputStream("D:\\workspace\\video1\\datui02.mp4");
  43. byte[] by = new byte[1024];
  44. int len;
  45. while ((len=fis.read(by))!=-1){
  46. fos.write(by,0,len);
  47. }
  48. fis.close();
  49. fos.close();
  50. }
  51. //方法1、基本字节流,一次读写一个字节
  52. public static void method1() throws IOException {
  53. FileInputStream fis = new FileInputStream("D:\\workspace\\video\\datui01.mp4");
  54. FileOutputStream fos = new FileOutputStream("D:\\workspace\\video1\\datui01.mp4");
  55. int by;
  56. while ((by=fis.read())!=-1){
  57. fos.write(by);
  58. }
  59. fis.close();
  60. fos.close();
  61. }
  62. }

IO-字符流readme

  1. 编码:
  2. 中文
  3. GBK-2字节
  4. UTF-8-三字节
  5. 使用字节流读取中文时,会由于编码问题,出现乱码,因此出现字符流
  6. 字符流=字节流+编码表
  7. 编码表:
  8. 字符编码就是一套自然语言的字符与二进制数之间的对应规则
  9. A编码存储的,就必须按A编码解析
  10. 字符流抽象基类
  11. Reader:字符输入流的抽象类
  12. Writer:字符输出流的抽象类
  13. 字符流中和编码解码相关的两个类
  14. InputStreamReaderOutputStreamWriter
  15. InputStreamReader是从字节流到字符流的桥接器:它使用指定的charset读取字节并将其解码为字符。
  16. 它使用的字符集可以通过名称指定,也可以明确指定,或者可以接受平台的默认字符集。
  17. OutputStreamWriter是从字符流到字节流的桥接器:使用指定的charset将写入其中的字符编码为字节。
  18. 它使用的字符集可以通过名称指定,也可以明确指定,或者可以接受平台的默认字符集。

IO-字符流编码解码

这里我想要使用GBK来看解码不成功的乱码,好像版本太高,默认不能选到GBK,导包也没成功,直接使用utf-8了

  1. package IOdemo;
  2. import sun.nio.cs.ext.GBK;
  3. import java.io.*;
  4. import java.nio.charset.Charset;
  5. import java.nio.charset.StandardCharsets;
  6. public class ConversionStreamdemo {
  7. public static void main(String[] args) throws IOException {
  8. //public OutputStreamWriter(OutputStream out)
  9. //创建使用默认字符编码的OutputStreamWriter。
  10. //public OutputStreamWriter(OutputStream out,Charset cs)
  11. //创建使用给定charset的OutputStreamWriter。
  12. //创建字节输出流对象
  13. // FileOutputStream fos = new FileOutputStream("D:\\workspace\\txt\\123.txt");
  14. //创建字符流对象
  15. // OutputStreamWriter osw = new OutputStreamWriter(fos);
  16. // OutputStreamWriter osw = new OutputStreamWriter(new FileOutputStream("D:\\workspace\\txt\\zhongguo.txt"));
  17. // OutputStreamWriter osw = new OutputStreamWriter(new FileOutputStream("D:\\workspace\\txt\\zhongguo.txt"), StandardCharsets.UTF_8);
  18. OutputStreamWriter osw = new OutputStreamWriter(new FileOutputStream("D:\\workspace\\txt\\zhongguo.txt"),StandardCharsets.UTF_8);
  19. osw.write("中国人");
  20. osw.close();
  21. //创建字节输入流对象
  22. InputStreamReader isr = new InputStreamReader(new FileInputStream("D:\\workspace\\txt\\zhongguo.txt"),StandardCharsets.UTF_8);
  23. //字符流读取数据
  24. //方式1 一次读取一个字节数据
  25. int ch;
  26. while ((ch=isr.read())!=-1){
  27. System.out.print((char)ch);
  28. }
  29. isr.close();
  30. }
  31. }

image.png

IO-字符流写数据的5种方式

  1. /**字符流写数据的5种方式
  2. *
  3. * public void write(int c) throws IOException
  4. * 写一个字符。
  5. *
  6. * public void write(char[] cbuf, int off, int len) throws IOException
  7. * 写一个字符数组或一部分。
  8. *
  9. * public void write(String str, int off, int len) throws IOException
  10. * 写一个字符串或一部分。
  11. *
  12. * **/
  13. package iodemo;
  14. import java.io.FileOutputStream;
  15. import java.io.IOException;
  16. import java.io.OutputStreamWriter;
  17. public class writeFive {
  18. public static void main(String[] args) throws IOException {
  19. OutputStreamWriter osw = new OutputStreamWriter(new FileOutputStream("xiayijieduan\\lll.txt"));
  20. //* public void write(int c) throws IOException
  21. // * 写一个字符。
  22. // osw.write(97);
  23. // //字符流写数据是不能够直接写进文件的,因为它最后是通过字节流写入
  24. // // 可通过刷新流或者关闭之前刷新一次写入
  25. // //刷新流
  26. // osw.flush();
  27. // osw.write(98);
  28. // * public void write(char[] cbuf, int off, int len) throws IOException
  29. // * 写一个字符数组或一部分。
  30. // char[] chs = {'a','b','c','d','e'};
  31. //// osw.write(chs);
  32. // osw.write(chs,0,3);
  33. // * public void write(String str, int off, int len) throws IOException
  34. // * 写一个字符串或一部分。
  35. // osw.write("abc");
  36. osw.write("abcde",0,3);
  37. osw.close();
  38. }
  39. }

IO-字符流读取数据的两种方式

  1. /**
  2. * public int read() throws IOException
  3. * 读一个字符。
  4. * <p>
  5. * public int read(char[] cbuf, int offset, int length) throws IOException
  6. * 将字符读入数组的一部分。
  7. **/
  8. package iodemo;
  9. import java.io.FileInputStream;
  10. import java.io.IOException;
  11. import java.io.InputStreamReader;
  12. public class readTwo {
  13. public static void main(String[] args) throws IOException {
  14. InputStreamReader isr = new InputStreamReader(new FileInputStream("xiayijieduan\\lll.txt"));
  15. // int ch;
  16. // while ((ch=isr.read())!=-1){
  17. // System.out.print((char)ch);
  18. // }
  19. char[] chs = new char[1024];
  20. int len;
  21. while ((len = isr.read(chs)) != -1) {
  22. System.out.println(len);
  23. System.out.println(chs);
  24. //把获得的字符数组转换成为字符串
  25. System.out.println(new String(chs, 0, len));
  26. }
  27. isr.close();
  28. }
  29. }

IO-字符流复制Java文件

  1. /**写数据的三种方式**/
  2. package iodemo;
  3. import java.io.File;
  4. import java.io.FileNotFoundException;
  5. import java.io.FileOutputStream;
  6. import java.io.IOException;
  7. import java.nio.charset.StandardCharsets;
  8. public class iodemoh01 {
  9. public static void main(String[] args) throws IOException {
  10. //第一种创建文件输出流对象的方法
  11. FileOutputStream fos = new FileOutputStream("xiayijieduan\\src\\iodemo\\fos.txt");
  12. /**
  13. * public FileOutputStream(String name) throws FileNotFoundException {
  14. * this(name != null ? new File(name) : null, false);
  15. * }
  16. * **/
  17. //上面这个等于下面这个
  18. // FileOutputStream fos = new FileOutputStream(new File("xiayijieduan\src\iodemo\fos.txt"));
  19. //第二种创建文件输出流对象的方法
  20. // FileOutputStream(File file): 创建文件输出流以写入由指定的File对象表示的文件
  21. File file = new File("xiayijieduan\\src\\iodemo\\fos.txt");
  22. FileOutputStream fos2 = new FileOutputStream(file);
  23. //上面这两个加起来就是下面着
  24. // FileOutputStream fos2 = new FileOutputStream(new File("xiayijieduan\src\iodemo\fos.txt"));
  25. //观察可以发现,这个和第一个是一样的,所以直接用第一个,是最方便的
  26. //void write(int b) 方式1
  27. // fos.write(97);
  28. // fos.write(98);
  29. //void write(byte[] b) 方式2
  30. // byte[] bys = {97,98,99,100,101};
  31. // fos.write(bys);
  32. // byte[] bys = "abcdef".getBytes(StandardCharsets.UTF_8);
  33. // fos.write(bys);
  34. //void write(byte[] b,int off,int len)
  35. byte[] bys = "abcdef".getBytes(StandardCharsets.UTF_8);
  36. fos.write(bys,1,4);
  37. fos.close();
  38. }
  39. }

IO-字符流复制Java文件-进阶版

  1. /**
  2. * 之前的方式的弊端
  3. * 转换流的名字比较长,常见的操作都是按照本地默认编码实现的,所以,为了简化书写,转换流提供了对应的子类
  4. *
  5. * FileReader:用于读取字符文件的便捷类
  6. * public FileReader(String fileName) throws FileNotFoundException
  7. * 使用平台 default charset创建一个新的 FileReader ,给定要读取的文件的 名称 。
  8. *
  9. * FileWriter:用于写入字符文件的便捷类
  10. * public FileWriter(String fileName) throws IOException
  11. * 构造一个 FileWriter给出文件名,使用平台的 default charset
  12. *
  13. *
  14. * 思路:
  15. * 1、根据数据源创建字符输入流对象
  16. * 2、根据目的地创建字符输出流对象
  17. * 3、读写数据,复制文件
  18. * 4、释放资源
  19. * **/
  20. package iodemo;
  21. import java.io.FileReader;
  22. import java.io.FileWriter;
  23. import java.io.IOException;
  24. public class iodemo297 {
  25. public static void main(String[] args) throws IOException {
  26. FileReader fr = new FileReader("xiayijieduan\\iodemoh01.java");
  27. FileWriter fw = new FileWriter("xiayijieduan\\fwcopy.java");
  28. int ch;
  29. while ((ch= fr.read())!=-1){
  30. fw.write(ch);
  31. }
  32. fr.close();
  33. fw.close();
  34. }
  35. }

IO-字符缓冲流

  1. /**
  2. * 字符缓冲流
  3. * public class BufferedReader
  4. * extends Reader
  5. * 从字符输入流中读取文本,缓冲字符,以便有效地读取字符,数组和行。
  6. *
  7. * public class BufferedWriter
  8. * extends Writer
  9. * 将文本写入字符输出流,缓冲字符,以便有效地写入单个字符,数组和字符串。
  10. *
  11. * 构造方法:
  12. *public BufferedWriter(Writer out)
  13. * 创建使用默认大小的输出缓冲区的缓冲字符输出流。
  14. * public BufferedReader(Reader in)
  15. * 创建使用默认大小的输入缓冲区的缓冲字符输入流。
  16. * **/
  17. package IOdemo;
  18. import java.io.*;
  19. public class iodemo298 {
  20. public static void main(String[] args) throws IOException {
  21. // FileWriter fw =new FileWriter("javaSdemo\\bw.txt");
  22. // BufferedWriter bw = new BufferedWriter(fw);
  23. // BufferedWriter bw = new BufferedWriter(new FileWriter("javaSdemo\\bw.txt"));
  24. // bw.write("hello\r\n");
  25. // bw.write("world");
  26. // bw.close();
  27. BufferedReader br = new BufferedReader(new FileReader("javaSdemo\\bw.txt"));
  28. // int ch;
  29. // while ((ch=br.read())!=-1){
  30. // System.out.print((char) ch);
  31. // }
  32. char[] chs = new char[1024];
  33. int len;
  34. while ((len=br.read(chs))!=-1){
  35. System.out.println(new String(chs,0,len));
  36. }
  37. }
  38. }

IO-字符缓冲流复制Java文件

  1. /**
  2. *
  3. *
  4. **/
  5. package IOdemo;
  6. import java.io.*;
  7. public class iodemo299 {
  8. public static void main(String[] args) throws IOException {
  9. BufferedReader br = new BufferedReader(new FileReader("javaSdemo\\Stringdemo.java"));
  10. BufferedWriter bw = new BufferedWriter(new FileWriter("javaSdemo\\copy.java"));
  11. // int ch;
  12. // while ((ch=br.read())!=-1){
  13. // bw.write(ch);
  14. // }
  15. char[] chs = new char[1024];
  16. int len;
  17. while ((len= br.read(chs))!=-1){
  18. bw.write(chs);
  19. }
  20. br.close();
  21. bw.close();
  22. }
  23. }

IO-字符流特有功能

  1. /**
  2. *newline()
  3. *readline()
  4. *
  5. **/
  6. package IOdemo;
  7. import java.io.*;
  8. public class iodemo300 {
  9. public static void main(String[] args) throws IOException {
  10. // BufferedWriter bw = new BufferedWriter(new FileWriter("javaSdemo\\bw1.txt"));
  11. // for (int i=0;i<10;i++){
  12. // bw.write("hello"+i);
  13. // //使用以下这种办法,存在一个问题,它只适用于windows系统
  14. //// bw.write("\r\n");
  15. // //使用字符流特有的换行
  16. // bw.newLine();
  17. // //一般来说,每写入一个数据都进行一次刷新,保证那一个数据已经写进去
  18. // bw.flush();
  19. // }
  20. BufferedReader br = new BufferedReader(new FileReader("javaSdemo\\bw1.txt"));
  21. //bw中两行
  22. // String line = br.readLine();
  23. // System.out.println(line);
  24. //
  25. // line= br.readLine();
  26. // System.out.println(line);
  27. //
  28. // //第三次读取返回null
  29. // line = br.readLine();
  30. // System.out.println(line);
  31. //readline不会自动换行
  32. String line;
  33. while ((line= br.readLine())!=null){
  34. System.out.print(line);
  35. }
  36. br.close();
  37. }
  38. }

IO-字符流特有功能复制文件

  1. package IOdemo;
  2. import java.io.*;
  3. public class iodemo301 {
  4. public static void main(String[] args) throws IOException {
  5. BufferedReader br = new BufferedReader(new FileReader("javaSdemo\\Stringdemo.java"));
  6. BufferedWriter bw = new BufferedWriter(new FileWriter("javaSdemo\\Copy.java"));
  7. //readline读数据不换行,所以写数据的时候,使用newline换行
  8. String line;
  9. while ((line= br.readLine())!=null){
  10. bw.write(line);
  11. bw.newLine();
  12. bw.flush();
  13. }
  14. br.close();
  15. bw.close();
  16. }
  17. }

集合到文件

集合到文件

  1. /**
  2. *
  3. * 集合到文件
  4. * 创建ArrayList集合
  5. * 往集合中存储字符串元素
  6. * 创建字符缓冲输出流对象
  7. * 遍历集合,得到每一个字符串数据
  8. * 调用字符缓冲输出流对象的方法写数据
  9. * 释放资源
  10. *
  11. *
  12. * **/
  13. package iodemo;
  14. import java.io.BufferedWriter;
  15. import java.io.FileWriter;
  16. import java.io.IOException;
  17. import java.util.ArrayList;
  18. public class iodemo303 {
  19. public static void main(String[] args) throws IOException {
  20. ArrayList<String> arrray = new ArrayList<String>();
  21. arrray.add("hello");
  22. arrray.add("world");
  23. arrray.add("java");
  24. BufferedWriter bw = new BufferedWriter(new FileWriter("xiayijieduan\\array.txt"));
  25. for (String s:arrray){
  26. bw.write(s);
  27. bw.newLine();
  28. bw.flush();
  29. }
  30. bw.close();
  31. }
  32. }

文件到集合

  1. /**
  2. *
  3. * 把文本文件中的数据读取到集合中,并遍历集合,文件中的每一行数据是一个集合元素
  4. *
  5. * 创建字符缓冲输入流对象
  6. * 创建ArrayList对象
  7. * 调用字符缓冲输入流对象的方法读数据
  8. * 把读取到的字符串数据存储到集合中
  9. * 释放资源
  10. * 遍历集合
  11. *
  12. *
  13. * **/
  14. package iodemo;
  15. import java.io.BufferedReader;
  16. import java.io.FileReader;
  17. import java.io.IOException;
  18. import java.util.ArrayList;
  19. public class iodemo304 {
  20. public static void main(String[] args) throws IOException {
  21. BufferedReader br = new BufferedReader(new FileReader("xiayijieduan\\array.txt"));
  22. ArrayList<String> array = new ArrayList<String>();
  23. String line;
  24. while ((line=br.readLine())!=null){
  25. array.add(line);
  26. }
  27. for (String s:array){
  28. System.out.println(s);
  29. }
  30. }
  31. }

说明

上面的两种情况,体现读写会有很多中情况,文件到文件,集合到文件,文件到集合等
案例中的文件及路径按照自己的进行

案例 点名器

  1. /**
  2. *
  3. * 有一个文件里面存储了班级同学的姓名,每个姓名战一行
  4. * 要求通过程序实现随机点名器
  5. *
  6. *创建字符缓冲输入流对象
  7. *创建ArrayList集合对象
  8. *调用字符缓冲输入流对象的方法读取数据
  9. * 把读取到的字符串数据存储到集合中
  10. * 释放资源
  11. * 使用Random产生一个随机数
  12. * 使用随机数作为索引用于集合中获取值
  13. * 输出
  14. *
  15. * **/
  16. package iodemo;
  17. import java.io.BufferedReader;
  18. import java.io.FileReader;
  19. import java.io.IOException;
  20. import java.util.ArrayList;
  21. import java.util.Random;
  22. public class iodemo305 {
  23. public static void main(String[] args) throws IOException {
  24. BufferedReader br = new BufferedReader(new FileReader("xiayijieduan\\lll.txt"));
  25. ArrayList<String> array = new ArrayList<String>();
  26. String line;
  27. while ((line=br.readLine())!=null){
  28. array.add(line);
  29. }
  30. br.close();
  31. Random r = new Random();
  32. int index = r.nextInt(array.size());
  33. String name = array.get(index);
  34. System.out.println(name);
  35. }
  36. }

文件到集合改进版

  1. /**
  2. *
  3. * 把集合中的数据写入到文本文件
  4. * 要求,每一个学生对象的数据作为文件中一行数据,如:
  5. * 格式:学号,姓名,年龄,居住的
  6. *
  7. * 思路
  8. * 定义学生类
  9. * 创建Arraylist集合
  10. * 把学生对象添加到集合中
  11. * 创建字符缓冲输出流对象
  12. * 遍历集合,得到每一个学生对象
  13. * 把学生对象的数据拼接成指定格式的字符串
  14. * 调用字符缓冲输出流对象的方法写数据
  15. * 释放资源
  16. *
  17. *
  18. * **/
  19. package iodemo;
  20. import java.io.BufferedWriter;
  21. import java.io.FileWriter;
  22. import java.io.IOException;
  23. import java.util.ArrayList;
  24. public class iodemo306 {
  25. public static void main(String[] args) throws IOException {
  26. ArrayList<student> array = new ArrayList<student>();
  27. student s1 = new student("001","lww01","address01",18);
  28. student s2 = new student("002","lww02","address02",17);
  29. student s3 = new student("003","lww03","address03",16);
  30. student s4 = new student("004","lww04","address04",15);
  31. array.add(s1);
  32. array.add(s2);
  33. array.add(s3);
  34. array.add(s4);
  35. BufferedWriter bw =new BufferedWriter(new FileWriter("xiayijieduan\\student.txt"));
  36. for (student s : array){
  37. StringBuilder sb = new StringBuilder();
  38. sb.append(s.getSid()).append(",").append(s.getName()).append(",").append(s.getAge()).append(",").append(s.getAddress());
  39. bw.write(sb.toString());
  40. bw.newLine();
  41. bw.flush();
  42. }
  43. bw.close();
  44. }
  45. }
  1. package iodemo;
  2. public class student {
  3. private String sid;
  4. private String name;
  5. private String address;
  6. private int age;
  7. public student() {
  8. }
  9. public student(String sid, String name, String address, int age) {
  10. this.sid = sid;
  11. this.name = name;
  12. this.address = address;
  13. this.age = age;
  14. }
  15. public String getSid() {
  16. return sid;
  17. }
  18. public void setSid(String sid) {
  19. this.sid = sid;
  20. }
  21. public String getName() {
  22. return name;
  23. }
  24. public void setName(String name) {
  25. this.name = name;
  26. }
  27. public String getAddress() {
  28. return address;
  29. }
  30. public void setAddress(String address) {
  31. this.address = address;
  32. }
  33. public int getAge() {
  34. return age;
  35. }
  36. public void setAge(int age) {
  37. this.age = age;
  38. }
  39. }

文件到集合改进版

  1. /**
  2. *
  3. * 把文本文件中的数据读取到集合中,并遍历集合
  4. * 文件中每一行数据是一个学生对象的成员变量值
  5. * 如:
  6. * 学号,姓名,年龄,地址
  7. *
  8. * 定义学生类
  9. * 创建字符缓冲输入流对象
  10. * 创建ArrayList集合对象
  11. * 调用字符缓冲输入流对象的方法读数据
  12. * 把读取到的字符串数据用split()进行分割,得到一个字符串数组
  13. * 创建学生对象
  14. * 把字符串数组中的每一个元素取出来对应的赋值给学生对象的成员变量值
  15. * 把学生对象添加到集合
  16. * 释放资源
  17. *遍历集合
  18. *
  19. * **/
  20. package iodemo;
  21. import java.io.BufferedReader;
  22. import java.io.FileReader;
  23. import java.io.IOException;
  24. import java.util.ArrayList;
  25. public class iodemo307 {
  26. public static void main(String[] args) throws IOException {
  27. BufferedReader br = new BufferedReader(new FileReader("xiayijieduan\\student.txt"));
  28. ArrayList<student> array = new ArrayList<student>();
  29. String line;
  30. while ((line= br.readLine())!=null){
  31. //把读取到的字符串数据用split()进行分割,得到一个字符串数组
  32. String[] strArray = line.split(",");
  33. student s = new student();
  34. //把字符串数组中的每一个元素取出来对应的赋值给学生对象的成员变量值
  35. // 文件中的格式如下
  36. //001,lww01,18,address01
  37. // 所以被存储到数组strArray中的第一个就是001,索引是0
  38. s.setSid(strArray[0]);
  39. s.setName(strArray[1]);
  40. //因为这里学生对象的成员变量值是int类型,而数组strArray是String类型,因此需要强转
  41. s.setAge(Integer.parseInt(strArray[2]));
  42. s.setAddress(strArray[3]);
  43. array.add(s);
  44. }
  45. br.close();
  46. for (student s :array){
  47. System.out.println(s.getSid()+","+s.getName()+","+s.getAge()+","+s.getAddress());
  48. }
  49. }
  50. }
  1. package iodemo;
  2. public class student {
  3. private String sid;
  4. private String name;
  5. private String address;
  6. private int age;
  7. public student() {
  8. }
  9. public student(String sid, String name, String address, int age) {
  10. this.sid = sid;
  11. this.name = name;
  12. this.address = address;
  13. this.age = age;
  14. }
  15. public String getSid() {
  16. return sid;
  17. }
  18. public void setSid(String sid) {
  19. this.sid = sid;
  20. }
  21. public String getName() {
  22. return name;
  23. }
  24. public void setName(String name) {
  25. this.name = name;
  26. }
  27. public String getAddress() {
  28. return address;
  29. }
  30. public void setAddress(String address) {
  31. this.address = address;
  32. }
  33. public int getAge() {
  34. return age;
  35. }
  36. public void setAge(int age) {
  37. this.age = age;
  38. }
  39. }

集合到文件数据排序版

  1. /**
  2. * 键盘录入5个学生信息 要求按照总分从高到低写入文本文件
  3. * <p>
  4. * <p>
  5. * 定义学术类
  6. * 创建TreeSet集合 通过比较器排序
  7. * 录入学生数据
  8. * 创建学生对象,录入数据赋值对应成员变量
  9. * 把学生对象添加到集合
  10. * 创建字符缓冲输出流对象
  11. * 遍历集合,得到每一个学生对象
  12. * 把学生对象的数据拼接成指定格式的字符串
  13. * 调用字符缓冲输出流对象的方法写数据
  14. * 释放资源
  15. **/
  16. package IOdemo;
  17. import java.io.BufferedWriter;
  18. import java.io.FileWriter;
  19. import java.io.IOException;
  20. import java.util.Comparator;
  21. import java.util.Scanner;
  22. import java.util.TreeSet;
  23. public class iodemo308 {
  24. public static void main(String[] args) throws IOException {
  25. // 创建TreeSet集合 通过比较器排序
  26. TreeSet<studentchengji> ts = new TreeSet<studentchengji>(new Comparator<studentchengji>() {
  27. @Override
  28. public int compare(studentchengji s1, studentchengji s2) {
  29. //比较总分
  30. int num = s2.getSum() - s1.getSum();
  31. //比较其它课程分
  32. int num2 = num == 0 ? s1.getChinese() - s2.getChinese() : num;
  33. int num3 = num2 == 0 ? s1.getMath() - s2.getMath() : num2;
  34. int num4 = num3 == 0 ? s1.getEnglish() - s2.getEnglish() : num3;
  35. int num5 = num4 == 0 ? s1.getName().compareTo(s2.getName()) : num4;
  36. return num5;
  37. }
  38. });
  39. //录入学生数据
  40. for (int i = 0; i < 5; i++) {
  41. Scanner sc = new Scanner(System.in);
  42. System.out.println("请录入第" + (i + 1) + "个学生信息:");
  43. System.out.println("姓名:");
  44. String name = sc.nextLine();
  45. System.out.println("语文成绩:");
  46. int chinese = sc.nextInt();
  47. System.out.println("数学成绩:");
  48. int math = sc.nextInt();
  49. System.out.println("英语成绩:");
  50. int english = sc.nextInt();
  51. //创建学生对象
  52. studentchengji s = new studentchengji();
  53. s.setName(name);
  54. s.setChinese(chinese);
  55. s.setEnglish(english);
  56. s.setMath(math);
  57. //把学生对象添加到集合
  58. ts.add(s);
  59. }
  60. BufferedWriter bw = new BufferedWriter(new FileWriter("javaSdemo\\ts.txt"));
  61. for (studentchengji s :ts){
  62. //拼接成指定格式的字符串
  63. StringBuilder sb = new StringBuilder();
  64. sb.append(s.getName()).append(",").append(s.getChinese()).append(",").append(s.getMath()).append(",").append(s.getEnglish()).append(",").append(s.getSum());
  65. //写入数据,作为一个字符串写入
  66. bw.write(sb.toString());
  67. bw.newLine();
  68. bw.flush();
  69. }
  70. bw.close();
  71. }
  72. }
  1. package IOdemo;
  2. public class studentchengji {
  3. private String name;
  4. private int chinese;
  5. private int math;
  6. private int english;
  7. public studentchengji() {
  8. }
  9. public studentchengji(String name, int chinese, int math, int english) {
  10. this.name = name;
  11. this.chinese = chinese;
  12. this.math = math;
  13. this.english = english;
  14. }
  15. public String getName() {
  16. return name;
  17. }
  18. public void setName(String name) {
  19. this.name = name;
  20. }
  21. public int getChinese() {
  22. return chinese;
  23. }
  24. public void setChinese(int chinese) {
  25. this.chinese = chinese;
  26. }
  27. public int getMath() {
  28. return math;
  29. }
  30. public void setMath(int math) {
  31. this.math = math;
  32. }
  33. public int getEnglish() {
  34. return english;
  35. }
  36. public void setEnglish(int english) {
  37. this.english = english;
  38. }
  39. public int getSum() {
  40. return this.chinese + this.math + this.english;
  41. }
  42. }

复制单级文件夹

  1. package IOdemo;
  2. import java.io.*;
  3. import static com.sun.deploy.cache.Cache.copyFile;
  4. /**
  5. *把D:\workspace\video文件夹复制到模块目录下
  6. *
  7. * 创建数据源目录File对象 路径是D:\workspace\video
  8. * 获取数据源目录File对象的名称
  9. * 创建目的地目录File对象,路径名是模块名加video组成
  10. * 判断目的地目录对应的File是否存在,如果不存在,就创建
  11. * 获取数据源目录下所有文件的File数组
  12. * 遍历File数组,得到每一个File对象,该File对象,其实就是数据源文件
  13. * 获取数据源文件File对象的名称
  14. * 创建目的地文件File对象,路径名是目的地目录+文件名称组成
  15. * 复制文件
  16. * 由于文件不仅仅是文本文件,还有图片,视频等,所以采用字节流复制文件
  17. *
  18. **/
  19. public class iodemo309 {
  20. public static void main(String[] args) throws IOException{
  21. File srcF = new File("D:\\workspace\\video");
  22. //获取数据源目录File对象的名称
  23. String srcFName = srcF.getName();
  24. //创建目的地目录File对象,路径名是模块名加video组成
  25. File desF = new File("javaSdemo",srcFName);
  26. if (!desF.exists()){
  27. desF.mkdir();
  28. }
  29. //获取数据源目录下所有文件的File数组
  30. File[] listFiles = srcF.listFiles();
  31. for (File srcFile : listFiles){
  32. //获取数据源文件File对象的名称
  33. String srcFileName = srcFile.getName();
  34. //创建目的地文件File对象,路径名是目的地目录+文件名称组成
  35. File desFile=new File(desF,srcFileName);
  36. copyFile(srcFile,desFile);
  37. }
  38. }
  39. private static void copyFile(File srcFile,File desFile) throws IOException{
  40. BufferedInputStream bis =new BufferedInputStream(new FileInputStream(srcFile));
  41. BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream(desFile));
  42. byte[] bys = new byte[1024];
  43. int len;
  44. while ((len=bis.read(bys))!=-1){
  45. bos.write(bys,0,len);
  46. }
  47. bis.close();
  48. bos.close();
  49. }
  50. }

递归复制多级文件

  1. /**
  2. * 复制多级文件夹
  3. *
  4. *
  5. * **/
  6. package IOdemo;
  7. import java.io.*;
  8. public class iodemo310 {
  9. public static void main(String[] args) throws IOException{
  10. File srcFile = new File("D:\\workspace\\video");
  11. File destFile = new File("D:\\workspace\\D");
  12. //写方法实现文件夹的复制,参数为数据源和目的地的File对象
  13. CopyFolder(srcFile,destFile);
  14. }
  15. private static void CopyFolder(File srcFile, File destFile) throws IOException{
  16. //判断数据源File是否是目录
  17. if(srcFile.isDirectory()){
  18. //在目的地创建与数据源File名称一样的目录
  19. String srcFileName = srcFile.getName();
  20. File newFolder = new File(destFile,srcFileName);
  21. if (!newFolder.exists()){
  22. newFolder.mkdir();
  23. }
  24. //获取数据源File下所有的文件或者目录的File数组
  25. File[] fileArray = srcFile.listFiles();
  26. //遍历该File数组,得到每一个File对象
  27. for (File files : fileArray){
  28. //把该files作为数据源File对象,递归调用复制文件夹的方法
  29. CopyFolder(files,newFolder);
  30. }
  31. }else {
  32. //不是目录,说明就是文件,用字节流
  33. File newFile = new File(destFile,srcFile.getName());
  34. copyFile(srcFile,newFile);
  35. }
  36. }
  37. private static void copyFile(File srcFile, File desFile) throws IOException {
  38. BufferedInputStream bis =new BufferedInputStream(new FileInputStream(srcFile));
  39. BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream(desFile));
  40. byte[] bys = new byte[1024];
  41. int len;
  42. while ((len=bis.read(bys))!=-1){
  43. bos.write(bys,0,len);
  44. }
  45. bis.close();
  46. bos.close();
  47. }
  48. }

特殊操作流-readme

  1. 特殊操作流
  2. 1、标准输入输出流
  3. public final class System
  4. extends Object
  5. System类包含几个有用的类字段和方法。 它无法实例化。 System类提供的设施包括标准输入,标准输出和错误输出流;
  6. 访问外部定义的属性和环境变量; 加载文件和库的方法; 以及用于快速复制阵列的一部分的实用方法。
  7. public static final InputStream in
  8. “标准”输入流。 此流已打开并准备好提供输入数据。 通常,该流对应于键盘输入或由主机环境或用户指定的另一输入源。
  9. public static final PrintStream out
  10. “标准”输出流。 此流已打开并准备接受输出数据。 通常,该流对应于主机环境或用户指定的显示输出或另一输出目的地。

标准输入输出流-Scanner-转换

  1. package IOdemo;
  2. import java.io.*;
  3. import java.util.Scanner;
  4. /**标准输入输出流
  5. *
  6. * public static final InputStream in
  7. * “标准”输入流。 此流已打开并准备好提供输入数据。 通常,该流对应于键盘输入或由主机环境或用户指定的另一输入源。
  8. *
  9. * public static final PrintStream out
  10. * “标准”输出流。 此流已打开并准备接受输出数据。 通常,该流对应于主机环境或用户指定的显示输出或另一输出目的地。
  11. *
  12. * **/
  13. public class iodemo312 {
  14. public static void main(String[] args) throws IOException {
  15. // InputStream is = System.in;
  16. // int by;
  17. // while ((by=is.read())!=-1){
  18. // System.out.print((char) by);
  19. // }
  20. //上面这个写法,输入什么就会输出什么,但是,不能读取中文,所以要包装成字符流
  21. //字节流
  22. // InputStream is = System.in;
  23. // //使用转换流,将字节流转换成为字符流
  24. // InputStreamReader isr = new InputStreamReader(is);
  25. // //字符流包装为字符缓冲流
  26. // BufferedReader br = new BufferedReader(isr);
  27. //上面这个合并为:
  28. BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
  29. System.out.println("请输入一个字符串:");
  30. String line = br.readLine();
  31. System.out.println("你输入的字符串是:"+line);
  32. System.out.println("请输入一个整数:");
  33. int i = Integer.parseInt(br.readLine());
  34. System.out.println("你输入的整数:"+i);
  35. //上面自己实现键盘录入太过于麻烦,所以Java就提供了一个类
  36. Scanner sc = new Scanner(System.in);
  37. }
  38. }

字节打印流

  1. package IOdemo;
  2. import java.io.IOException;
  3. import java.io.PrintStream;
  4. /**
  5. * 字节打印流
  6. * Class PrintStream
  7. * java.lang.Object
  8. * java.io.OutputStream
  9. * java.io.FilterOutputStream
  10. * java.io.PrintStream
  11. * 继承自字节输出流
  12. *
  13. * 打印流的特点:
  14. * 只负责输出数据,不负责读取数据
  15. * 有自己的特有方法
  16. *
  17. *
  18. * **/
  19. public class iodemo314 {
  20. public static void main(String[] args) throws IOException {
  21. PrintStream ps = new PrintStream("javaSdemo\\ps.txt");
  22. //使用字节输出流的方法写数据
  23. ps.write(97);
  24. //使用特有方法写数据,直接写入97,而不是a
  25. ps.print(97);
  26. ps.close();
  27. }
  28. }

字符打印流

  1. package IOdemo;
  2. import java.io.FileWriter;
  3. import java.io.IOException;
  4. import java.io.PrintWriter;
  5. public class iodemo315 {
  6. public static void main(String[] args) throws IOException {
  7. // PrintWriter pw = new PrintWriter("javaSdemo\\pw.txt");
  8. // //使用继承的父类的方法写数据
  9. // pw.write("hello");
  10. // pw.write("\r\n");
  11. // pw.flush();
  12. // pw.write("java");
  13. // pw.write("\r\n");
  14. // pw.flush();
  15. //
  16. // //使用自带的方法进行写数据,自带换行
  17. // pw.println("hello");
  18. // pw.flush();
  19. //以上还是需要手动进行flush
  20. PrintWriter pw1 = new PrintWriter(new FileWriter("javaSdemo\\pw.txt"),true);
  21. pw1.println("lww");
  22. }
  23. }

字符打印流复制文件

  1. package iodemo;
  2. import java.io.*;
  3. public class iodemo316 {
  4. public static void main(String[] args) throws IOException {
  5. BufferedReader br = new BufferedReader(new FileReader("xiayijieduan\\iodemoh01.java"));
  6. PrintWriter pw = new PrintWriter(new FileWriter("xiayijieduan\\copydemo.java",true));
  7. String line;
  8. while ((line = br.readLine())!=null){
  9. pw.println(line);
  10. }
  11. br.close();
  12. pw.close();
  13. }
  14. }

序列化

  1. 序列化:
  2. public class ObjectOutputStream
  3. extends OutputStream
  4. implements ObjectOutput, ObjectStreamConstants
  5. ObjectOutputStreamJava对象的原始数据类型和图形写入OutputStream
  6. 可以使用ObjectInputStream读取(重构)对象。 可以通过使用流的文件来完成对象的持久存储。
  7. 如果流是网络套接字流,则可以在另一个主机或另一个进程中重新构建对象。
  8. public ObjectOutputStream(OutputStream out) throws IOException
  9. 创建一个写入指定OutputStreamObjectOutputStream
  10. 此构造函数将序列化流标头写入基础流; 调用者可能希望立即刷新流以确保接收ObjectInputStreams的构造函数在读取头时不会阻塞。
  11. public final void writeObject(Object obj) throws IOException
  12. 将指定的对象写入ObjectOutputStream
  13. 写入对象的类,类的签名,以及类的非瞬态和非静态字段及其所有超类型的值。
  14. 可以使用writeObjectreadObject方法覆盖类的默认序列化。 该对象引用的对象是可传递的,因此可以通过ObjectInputStream重建完整的对象等效图。
  15. 注意:
  16. 一个对象要想被序列化,该对象所属的类必须实现Serializable接口
  17. Serializable只是一个标记接口,实现该接口,不需要重写任何方法
  18. 反序列化:
  19. public class ObjectInputStream
  20. extends InputStream
  21. implements ObjectInput, ObjectStreamConstants
  22. ObjectInputStream对先前使用ObjectOutputStream编写的原始数据和对象进行反序列化。
  23. public ObjectInputStream(InputStream in) throws IOException
  24. 创建一个从指定的InputStream读取的ObjectInputStream
  25. 从流中读取序列化流头并进行验证。 此构造函数将阻塞,直到相应的ObjectOutputStream已写入并刷新标头。
  26. public final Object readObject() throws IOException, ClassNotFoundException
  27. ObjectInputStream中读取一个对象。 读取对象的类,类的签名,以及类的非瞬态和非静态字段及其所有超类型的值。
  28. 可以使用writeObjectreadObject方法覆盖类的默认反序列化。 这个对象引用的对象是可传递的,因此readObject可以重建完整的等效对象图。

对象序列化流

  1. package iodemo;
  2. import java.io.FileOutputStream;
  3. import java.io.IOException;
  4. import java.io.ObjectOutputStream;
  5. import java.io.OutputStreamWriter;
  6. public class iodemo317 {
  7. public static void main(String[] args) throws IOException {
  8. ObjectOutputStream oos = new ObjectOutputStream(new FileOutputStream("xiayijieduan\\oos.txt"));
  9. student s = new student("12","lww","sz",18);
  10. oos.writeObject(s);
  11. oos.close();
  12. }
  13. }
  1. package iodemo;
  2. import java.io.Serializable;
  3. public class student implements Serializable {
  4. private String sid;
  5. private String name;
  6. private String address;
  7. private int age;
  8. public student() {
  9. }
  10. public student(String sid, String name, String address, int age) {
  11. this.sid = sid;
  12. this.name = name;
  13. this.address = address;
  14. this.age = age;
  15. }
  16. public String getSid() {
  17. return sid;
  18. }
  19. public void setSid(String sid) {
  20. this.sid = sid;
  21. }
  22. public String getName() {
  23. return name;
  24. }
  25. public void setName(String name) {
  26. this.name = name;
  27. }
  28. public String getAddress() {
  29. return address;
  30. }
  31. public void setAddress(String address) {
  32. this.address = address;
  33. }
  34. public int getAge() {
  35. return age;
  36. }
  37. public void setAge(int age) {
  38. this.age = age;
  39. }
  40. }

image.png

对象反序列化流

  1. package iodemo;
  2. import java.io.FileInputStream;
  3. import java.io.IOException;
  4. import java.io.ObjectInputStream;
  5. public class iodemo318 {
  6. public static void main(String[] args) throws IOException, ClassNotFoundException {
  7. ObjectInputStream ois = new ObjectInputStream(new FileInputStream("xiayijieduan\\oos.txt"));
  8. Object obj = ois.readObject();
  9. //向下转移
  10. student s = (student) obj;
  11. System.out.println(s.getSid()+","+s.getAddress()+","+s.getName()+","+s.getAge());
  12. ois.close();
  13. }
  14. }

序列化id

  1. //保持类改变不会导致读取发生错误
  2. //private static final long serialVersionUID = 1234;
  3. //private transient int age; 定义某个成员变量不想被序列化,对象被反序列化的时候,该对象还是有这个参数的,反序列化读取该参数为0
  4. package iodemo;
  5. import java.io.Serializable;
  6. public class student implements Serializable {
  7. private static final long serialVersionUID = 1234;
  8. private String sid;
  9. private String name;
  10. private String address;
  11. private transient int age;
  12. public student() {
  13. }
  14. public student(String sid, String name, String address, int age) {
  15. this.sid = sid;
  16. this.name = name;
  17. this.address = address;
  18. this.age = age;
  19. }
  20. public String getSid() {
  21. return sid;
  22. }
  23. public void setSid(String sid) {
  24. this.sid = sid;
  25. }
  26. public String getName() {
  27. return name;
  28. }
  29. public void setName(String name) {
  30. this.name = name;
  31. }
  32. public String getAddress() {
  33. return address;
  34. }
  35. public void setAddress(String address) {
  36. this.address = address;
  37. }
  38. public int getAge() {
  39. return age;
  40. }
  41. public void setAge(int age) {
  42. this.age = age;
  43. }
  44. @Override
  45. public String toString() {
  46. return "student{" +
  47. "sid='" + sid + '\'' +
  48. ", name='" + name + '\'' +
  49. ", address='" + address + '\'' +
  50. ", age=" + age +
  51. '}';
  52. }
  53. }
  1. package iodemo;
  2. import java.io.*;
  3. public class iodemo319 {
  4. public static void main(String[] args) throws IOException, ClassNotFoundException {
  5. write();
  6. read();
  7. }
  8. public static void write() throws IOException {
  9. ObjectOutputStream oos = new ObjectOutputStream(new FileOutputStream("xiayijieduan\\oos1.txt"));
  10. student s = new student("12","lww","sz",18);
  11. oos.writeObject(s);
  12. oos.close();
  13. }
  14. public static void read() throws IOException, ClassNotFoundException {
  15. ObjectInputStream ois = new ObjectInputStream(new FileInputStream("xiayijieduan\\oos1.txt"));
  16. Object obj = ois.readObject();
  17. student s = (student) obj;
  18. System.out.println(s.getSid()+","+s.getAddress()+","+s.getName()+","+s.getAge());
  19. ois.close();
  20. }
  21. }

Properties

  1. package IOdemo;
  2. /**
  3. * Properties类表示一组持久的属性。 Properties可以保存到流中或从流中加载。 属性列表中的每个键及其对应的值都是一个字符串。
  4. * Properties作为map集合使用
  5. *
  6. * **/
  7. import java.util.Properties;
  8. import java.util.Set;
  9. public class iodemo320 {
  10. public static void main(String[] args) {
  11. Properties pops = new Properties();
  12. pops.put("nvsec01","yongge");
  13. pops.put("nvsec02","D");
  14. pops.put("nvsec03","XING");
  15. //获取键集合
  16. Set<Object> ks = pops.keySet();
  17. for (Object key : ks){
  18. Object value = pops.get(key);
  19. System.out.println(key+","+value);
  20. }
  21. }
  22. }

Properties 特有方法

  1. package IOdemo;
  2. /**
  3. *
  4. * Properties特有方法,与上面进行对比
  5. *
  6. * **/
  7. import java.util.Properties;
  8. import java.util.Set;
  9. public class iodemo320 {
  10. public static void main(String[] args) {
  11. Properties pops = new Properties();
  12. System.out.println(pops);
  13. System.out.println("-----------");
  14. //public Object setProperty (String key, String value)
  15. //调用Hashtable方法put 。 提供与getProperty方法的并行性。 强制使用字符串作为属性键和值。 返回的值是Hashtable调用put的结果。
  16. pops.setProperty("ny001","lww");
  17. pops.setProperty("ny002","lww1");
  18. pops.setProperty("ny003","lww2");
  19. /**
  20. * public synchronized Object setProperty(String key, String value) {
  21. * return put(key, value);
  22. * }
  23. * **/
  24. // pops.put("nvsec01","yongge");
  25. // pops.put("nvsec02","D");
  26. // pops.put("nvsec03","XING");
  27. System.out.println(pops);
  28. System.out.println("-----------");
  29. //
  30. // System.out.println(pops.getProperty("ny003"));
  31. // System.out.println("-----------");
  32. //获取键集合
  33. // Set<Object> ks = pops.keySet();
  34. // for (Object key : ks){
  35. // Object value = pops.get(key);
  36. // System.out.println(key+","+value);
  37. // }
  38. Set<String> names = pops.stringPropertyNames();
  39. for (String key:names){
  40. // System.out.println(key);
  41. String value = pops.getProperty(key);
  42. System.out.println(key+","+value);
  43. }
  44. }
  45. }

Properties 结合 io

  1. package IOdemo;
  2. import java.io.FileReader;
  3. import java.io.FileWriter;
  4. import java.io.IOException;
  5. import java.util.Properties;
  6. public class iodemo322 {
  7. public static void main(String[] args) throws IOException{
  8. // mystore();
  9. myload();
  10. }
  11. public static void mystore() throws IOException {
  12. Properties pops =new Properties();
  13. pops.setProperty("001","lww");
  14. pops.setProperty("002","lwe");
  15. pops.setProperty("003","lwr");
  16. FileWriter fw = new FileWriter("javaSdemo\\pops.txt");
  17. //把集合中的数据存储到pops.txt中,第二个参数是描述,填写null即可
  18. pops.store(fw,null);
  19. fw.close();
  20. }
  21. public static void myload() throws IOException{
  22. Properties pops =new Properties();
  23. FileReader fr = new FileReader("javaSdemo\\pops.txt");
  24. //读取pops.txt中的数据到集合中
  25. pops.load(fr);
  26. fr.close();
  27. //看一下是否写入成功
  28. System.out.println(pops);
  29. }
  30. }

image.png

Properties案例

  1. package iodemo;
  2. /**
  3. *猜数字游戏
  4. **/
  5. import java.io.FileReader;
  6. import java.io.FileWriter;
  7. import java.io.IOException;
  8. import java.util.Properties;
  9. public class iodemo323 {
  10. public static void main(String[] args) throws IOException {
  11. Properties pops = new Properties();
  12. FileReader fr = new FileReader("xiayijieduan\\array.txt");
  13. pops.load(fr);
  14. fr.close();
  15. String count = pops.getProperty("count");
  16. int i = Integer.parseInt(count);
  17. if (i>=3){
  18. System.out.println("游戏次数耗尽,请充钱");
  19. }else {
  20. guestNum.start();
  21. i++;
  22. pops.setProperty("count",String.valueOf(i));
  23. FileWriter fw = new FileWriter("xiayijieduan\\array.txt");
  24. pops.store(fw,null);
  25. fw.close();
  26. }
  27. }
  28. }
  1. package iodemo;
  2. import java.util.Random;
  3. import java.util.Scanner;
  4. public class guestNum {
  5. private guestNum(){
  6. }
  7. public static void start(){
  8. Random r = new Random();
  9. int number = r.nextInt(100)+1;
  10. while (true){
  11. Scanner sc =new Scanner(System.in);
  12. System.out.println("请输入你要猜的数字:");
  13. int gNum = sc.nextInt();
  14. if (gNum>number){
  15. System.out.println("大了");
  16. }else if (gNum<number){
  17. System.out.println("小了");
  18. }else {
  19. System.out.println("对了");
  20. break;
  21. }
  22. }
  23. }
  24. }

image.png

多线程

readme

  1. 进程-->正在运行的程序
  2. 是系统进行资源分配和调用的独立单位
  3. 每一个进程都有它自己的内存空间和系统资源
  4. 线程-->是进程中的单个顺序控制流,是一条执行路径
  5. 一个进程中只有一条执行路径,则是单线程程序
  6. 一个进程中只有多条执行路径,则是多线程程序
  7. 简述:
  8. 记事本,在输入文字的时候,打开记事本的属性就不能继续输入文字,必须先关闭记事本,这就是单线程
  9. 扫雷,在扫雷的时候,扫雷的计时器也在运行,停止扫雷的时候,计时器也在运行,这就是多线程

多线程demo

  1. package threadsdemo;
  2. /**
  3. *可以同时开启两个for循环输出
  4. **/
  5. public class mythreaddemo {
  6. public static void main(String[] args) {
  7. mythread my1 = new mythread();
  8. mythread my2 = new mythread();
  9. // my1.run();
  10. // my2.run();
  11. //上面不能进入多线程,需要使用start方法
  12. my1.start();
  13. my2.start();
  14. }
  15. }
  1. package threadsdemo;
  2. /**
  3. *需要继承Thread类,并且重写run方法
  4. **/
  5. public class mythread extends Thread{
  6. @Override
  7. public void run() {
  8. for (int i=0;i<100;i++){
  9. System.out.println(i);
  10. }
  11. }
  12. }

设置及获取线程名称

  1. package threademo;
  2. public class threademo {
  3. public static void main(String[] args) {
  4. // mythread my1 = new mythread();
  5. // mythread my2 = new mythread();
  6. // my1.setName("高铁");
  7. // my2.setName("飞机");
  8. //上面两种方式进行线程名的设置,通过构造线程类里面的构造方法,可以在实例化对象的时候,进行线程名的设置
  9. mythread my1 = new mythread("高铁");
  10. mythread my2 = new mythread("飞机");
  11. // my1.start();
  12. // my2.start();
  13. //对当前正在运行main方法,如果想知道他的线程名
  14. System.out.println(Thread.currentThread().getName());
  15. }
  16. }
  1. package threademo;
  2. public class mythread extends Thread {
  3. public mythread(){
  4. }
  5. public mythread(String name){
  6. //Thread内存在成员变量name和构造方法,这里使用super,将nema传过去,进行线程名的设置
  7. super(name);
  8. }
  9. @Override
  10. public void run() {
  11. for (int i =0 ;i<100;i++){
  12. System.out.println(getName()+","+i);
  13. }
  14. }
  15. }

线程优先级设置

  1. package threademo;
  2. public class threademo327 {
  3. public static void main(String[] args) {
  4. mythread my1 = new mythread("高铁");
  5. mythread my2 = new mythread("飞机");
  6. mythread my3 = new mythread("火箭");
  7. //范围1-10,10获取资源的几率高一些
  8. my1.setPriority(10);
  9. System.out.println(my1.getPriority());
  10. System.out.println(my2.getPriority());
  11. System.out.println(my3.getPriority());
  12. my1.start();
  13. my2.start();
  14. my3.start();
  15. }
  16. }

线程控制

  1. /**
  2. *
  3. *sleep 将当前正在执行的线程停留(暂停执行)指定的毫秒数
  4. *join 等待这个线程死亡
  5. *setDaemon 守护线程,将此线程标记为守护线程,当运行的线程都是守护线程时,Java虚拟机将退出
  6. *
  7. **/
  8. package threademo;
  9. public class threademo327 {
  10. public static void main(String[] args) {
  11. mythread my1 = new mythread("高铁");
  12. mythread my2 = new mythread("飞机");
  13. mytheard01 my3 = new mytheard01("火箭");
  14. //范围1-10,10获取资源的几率高一些
  15. my3.setPriority(10);
  16. System.out.println(my1.getPriority());
  17. System.out.println(my2.getPriority());
  18. System.out.println(my3.getPriority());
  19. //my1 my2是守护线程,当其它线程都跑完了,只剩下这两个,就会直接结束,Java虚拟机退出
  20. my1.setDaemon(true);
  21. my2.setDaemon(true);
  22. //
  23. my1.start();
  24. //当my1的线程结束以后,才能跑其它线程
  25. try {
  26. my1.join();
  27. } catch (InterruptedException e) {
  28. e.printStackTrace();
  29. }
  30. my2.start();
  31. my3.start();
  32. }
  33. }

多线程实现方式

  1. 两种:
  2. 1、继承Thread类(上面多线程demo实现)
  3. 2、实现Rundemo接口(下面案例)
  1. package threadsdemo;
  2. public class myrundemotest {
  3. public static void main(String[] args) {
  4. myRundemo my = new myRundemo();
  5. //创建Thread类的对象,把mythreaddemo的对象作为构造方法的参数
  6. Thread t1 = new Thread(my);
  7. Thread t2 = new Thread(my,"有名字的");
  8. t1.start();
  9. t2.start();
  10. }
  11. }
  1. package threadsdemo;
  2. public class myRundemo implements Runnable{
  3. @Override
  4. public void run() {
  5. for (int i=0;i<100;i++){
  6. System.out.println(Thread.currentThread().getName()+":"+i);
  7. }
  8. }
  9. }

卖票

运行起来会发现有异常结果,多个线程在争cpu的时候出现了问题,因为多个线程都在执行一个共同资源的代码块

  1. package threadsdemo;
  2. public class selltiketdemo {
  3. public static void main(String[] args) {
  4. sellTicket st = new sellTicket();
  5. Thread t1 = new Thread(st,"窗口1");
  6. Thread t2 = new Thread(st,"窗口2");
  7. Thread t3 = new Thread(st,"窗口3");
  8. t1.start();
  9. t2.start();
  10. t3.start();
  11. }
  12. }
  1. package threadsdemo;
  2. public class sellTicket implements Runnable{
  3. private int tickets = 100;
  4. @Override
  5. public void run() {
  6. while (true) {
  7. if (tickets > 0) {
  8. try {
  9. Thread.sleep(100);
  10. }catch (InterruptedException e){
  11. e.printStackTrace();
  12. }
  13. System.out.println(Thread.currentThread().getName() + "正在出售第" + tickets + "张票");
  14. tickets--;
  15. }
  16. }
  17. }
  18. }

这里是因为,t1在执行tickets—的时候,t2也执行了输出,而tickets—还没执行完,所以还是100,t3同理,然后三个执行完,票就是97了
image.png

卖票问题解决-锁

  1. package threadsdemo;
  2. public class selltiketdemo {
  3. public static void main(String[] args) {
  4. sellTicket st = new sellTicket();
  5. Thread t1 = new Thread(st,"窗口1");
  6. Thread t2 = new Thread(st,"窗口2");
  7. Thread t3 = new Thread(st,"窗口3");
  8. t1.start();
  9. t2.start();
  10. t3.start();
  11. }
  12. }
  1. package threadsdemo;
  2. public class sellTicket implements Runnable{
  3. private int tickets = 1000;
  4. private Object obj = new Object();
  5. @Override
  6. public void run() {
  7. while (true) {
  8. //假设t1抢到了cpu的执行权
  9. //t2在t1休眠的时候抢到了cpu的执行权,但是发现这段代码锁住了,就只能等
  10. //t1出来后,三个对象又重新抢cpu的执行权,抢到的进去执行
  11. synchronized (obj) {
  12. //t1进来后,就会把这段代码锁起来
  13. if (tickets > 0) {
  14. try {
  15. //t1休眠10毫秒,然后t2这个时候抢到了cpu的执行权
  16. Thread.sleep(10);
  17. } catch (InterruptedException e) {
  18. e.printStackTrace();
  19. }
  20. System.out.println(Thread.currentThread().getName() + "正在出售第" + tickets + "张票");
  21. tickets--;
  22. }
  23. //t1出来后,这段代码就解锁了
  24. }
  25. }
  26. }
  27. }

image.png

卖票问题解决-锁2-代码优化

  1. 同步方法:就是把synchronized关键字加到方法上
  2. 格式:
  3. 修饰符 synchronized 返回值类型 方法名(方法参数){}
  4. 同步方法的锁对象是什么呢?
  5. this
  6. 同步静态方法:就是把synchronized关键字加到静态方法上
  7. 格式:
  8. 修饰符 static synchronized 返回值类型 方法名(方法参数){}
  9. 同步静态方法的锁对象是什么呢?
  10. 类名.class
  1. package threadsdemo;
  2. public class selltiketdemo {
  3. public static void main(String[] args) {
  4. sellTicket st = new sellTicket();
  5. Thread t1 = new Thread(st,"窗口1");
  6. Thread t2 = new Thread(st,"窗口2");
  7. Thread t3 = new Thread(st,"窗口3");
  8. t1.start();
  9. t2.start();
  10. t3.start();
  11. }
  12. }
  1. package threadsdemo;
  2. public class sellTicket implements Runnable {
  3. private static int tickets = 1000;
  4. private Object obj = new Object();
  5. private int x = 0;
  6. @Override
  7. public void run() {
  8. while (true) {
  9. if (x % 2 == 0) {
  10. // //假设t1抢到了cpu的执行权
  11. // //t2在t1休眠的时候抢到了cpu的执行权,但是发现这段代码锁住了,就只能等
  12. // //t1出来后,三个对象又重新抢cpu的执行权,抢到的进去执行
  13. //// synchronized (this) { //因为下面使用了静态方法,所以不能使用this
  14. //// 使用这个类的字节码
  15. // synchronized (sellTicket.class) {
  16. //
  17. // //t1进来后,就会把这段代码锁起来
  18. // if (tickets > 0) {
  19. // try {
  20. // //t1休眠10毫秒,然后t2这个时候抢到了cpu的执行权
  21. // Thread.sleep(5);
  22. // } catch (InterruptedException e) {
  23. // e.printStackTrace();
  24. // }
  25. // System.out.println(Thread.currentThread().getName() + "正在出售第" + tickets + "张票");
  26. // tickets--;
  27. // }
  28. // //t1出来后,这段代码就解锁了
  29. // }
  30. selltickets();
  31. } else {
  32. // synchronized (obj) {
  33. // //t1进来后,就会把这段代码锁起来
  34. // if (tickets > 0) {
  35. // try {
  36. // //t1休眠10毫秒,然后t2这个时候抢到了cpu的执行权
  37. // Thread.sleep(10);
  38. // } catch (InterruptedException e) {
  39. // e.printStackTrace();
  40. // }
  41. // System.out.println(Thread.currentThread().getName() + "正在出售第" + tickets + "张票");
  42. // tickets--;
  43. // }
  44. // //t1出来后,这段代码就解锁了
  45. selltickets();
  46. }
  47. }
  48. }
  49. private static synchronized void selltickets() {
  50. //t1进来后,就会把这段代码锁起来
  51. if (tickets > 0) {
  52. try {
  53. //t1休眠10毫秒,然后t2这个时候抢到了cpu的执行权
  54. Thread.sleep(5);
  55. } catch (InterruptedException e) {
  56. e.printStackTrace();
  57. }
  58. System.out.println(Thread.currentThread().getName() + "正在出售第" + tickets + "张票");
  59. tickets--;
  60. //t1出来后,这段代码就解锁了
  61. }
  62. }
  63. }

卖票问题解决-锁2-Lock

使用Lock锁,更加直观方便

  1. package threadsdemo;
  2. public class selltiketdemo {
  3. public static void main(String[] args) {
  4. sellTickets2 st = new sellTickets2();
  5. Thread t1 = new Thread(st,"窗口1");
  6. Thread t2 = new Thread(st,"窗口2");
  7. Thread t3 = new Thread(st,"窗口3");
  8. t1.start();
  9. t2.start();
  10. t3.start();
  11. }
  12. }
  1. package threadsdemo;
  2. import java.util.concurrent.locks.Lock;
  3. import java.util.concurrent.locks.ReentrantLock;
  4. public class sellTickets2 implements Runnable{
  5. private int tickets = 1000;
  6. private Lock lock =new ReentrantLock();
  7. @Override
  8. public void run() {
  9. while (true){
  10. try {
  11. lock.lock();
  12. if (tickets>0){
  13. try {
  14. Thread.sleep(1);
  15. }catch (InterruptedException e){
  16. e.printStackTrace();
  17. }
  18. System.out.println(Thread.currentThread().getName() + "正在出售第" + tickets + "张票");
  19. tickets--;
  20. }
  21. }finally {
  22. lock.unlock();
  23. }
  24. }
  25. }
  26. }

生产者消费者案例

  1. package threadsdemo;
  2. /**
  3. * 生产者消费者案例思路:
  4. * 1、奶箱类Box,定义一个成员变量,表示第x瓶奶,提供存储牛奶和获取牛奶的操作
  5. * 2、生产者类producer,实现Runable接口,重写run方法,调用存储牛奶的操作
  6. * 3、消费者类customer,实现Runable接口,重写run方法,调用获取牛奶的操作
  7. * 4、测试类Boxdemo,main方法:
  8. * 创建奶箱对象,这里共享数据区域
  9. * 创建生产者对象,把奶箱对象作为构造方法参数转递,这样就可以在这个类中调用存储牛奶的操作
  10. * 创建消费者对象,把奶箱对象作为构造方法参数转递,这样就可以在这个类中调用获取牛奶的操作
  11. * 创建2个线程对象,分别把生产者对象和消费者对象作为构造方法参数传递
  12. * 启动线程
  13. *
  14. * **/
  15. public class Boxdemo {
  16. public static void main(String[] args) {
  17. Box b = new Box();
  18. producer p = new producer(b);
  19. customer c = new customer(b);
  20. Thread t1 = new Thread(p);
  21. Thread t2 = new Thread(c);
  22. t1.start();
  23. t2.start();
  24. }
  25. }
  1. package threadsdemo;
  2. public class Box {
  3. private int milk;
  4. //定义一个奶箱的状态,true才可以进行获取方法,不然就会进行wait,进入等待
  5. private boolean status = false;
  6. public synchronized void put(int milk){
  7. if (status){
  8. try {
  9. wait();
  10. } catch (InterruptedException e) {
  11. e.printStackTrace();
  12. }
  13. }
  14. this.milk = milk;
  15. System.out.println("送奶工将第"+this.milk+"瓶奶放入奶箱");
  16. status = true;
  17. //唤醒正在等待的线程
  18. notifyAll();
  19. }
  20. public synchronized void get(){
  21. if (!status){
  22. try {
  23. wait();
  24. } catch (InterruptedException e) {
  25. e.printStackTrace();
  26. }
  27. }
  28. System.out.println("用户拿到第"+this.milk+"瓶奶");
  29. status=false;
  30. notifyAll();
  31. }
  32. }
  1. package threadsdemo;
  2. public class producer implements Runnable{
  3. private Box b;
  4. public producer(Box b) {
  5. this.b=b;
  6. }
  7. @Override
  8. public void run() {
  9. for (int i =1;i<=5;i++){
  10. b.put(i);
  11. }
  12. }
  13. }
  1. package threadsdemo;
  2. public class customer implements Runnable{
  3. private Box b;
  4. public customer(Box b) {
  5. this.b=b;
  6. }
  7. @Override
  8. public void run() {
  9. while (true){
  10. b.get();
  11. }
  12. }
  13. }

网络编程

udp

  1. udp发送数据的步骤
  2. 1、创建发送端的Socket对象(DatagramSocket)
  3. 2、创建数据,并把数据打包
  4. 3、调用Socket对象的方法发送数据
  5. 4、关闭发送端
  6. udp接收数据的步骤
  7. 1、创建接收端的Socket对象(DatagramSocket)
  8. 2、创建一个数据包,用于接收数据
  9. 3、调用Socket对象的方法接收数据
  10. 4、解析数据包,并把数据在控制台显示
  11. 5、关闭接收端
  1. package wlbc01;
  2. import java.io.IOException;
  3. import java.net.DatagramPacket;
  4. import java.net.DatagramSocket;
  5. import java.net.InetAddress;
  6. import java.net.SocketException;
  7. import java.nio.charset.StandardCharsets;
  8. public class SendDemo {
  9. public static void main(String[] args) throws IOException {
  10. //创建发送端的Socket对象(DatagramSocket)
  11. DatagramSocket ds = new DatagramSocket();
  12. //创建数据,并把数据打包
  13. byte[] bys = "hello,udp".getBytes();
  14. // int length = bys.length;
  15. // InetAddress address = InetAddress.getByName("192.168.93.1");
  16. // int port = 10086;
  17. // DatagramPacket dp = new DatagramPacket(bys,length,address,port);
  18. //打包数据
  19. DatagramPacket dp = new DatagramPacket(bys, bys.length,InetAddress.getByName("192.168.93.1"),10086);
  20. //发送数据
  21. ds.send(dp);
  22. ds.close();
  23. }
  24. }
  1. package wlbc01;
  2. import java.io.IOException;
  3. import java.net.DatagramPacket;
  4. import java.net.DatagramSocket;
  5. import java.net.SocketException;
  6. public class receivedemo {
  7. public static void main(String[] args) throws IOException {
  8. //创建接收端的Socket对象(DatagramSocket)
  9. DatagramSocket ds = new DatagramSocket(10086);
  10. //创建一个数据包,用于接收数据
  11. byte[] bys = new byte[1024];
  12. DatagramPacket dp = new DatagramPacket(bys, bys.length);
  13. ds.receive(dp);
  14. System.out.println(dp.getData());
  15. int len = dp.getLength();
  16. byte[] data = dp.getData();
  17. System.out.println(data);
  18. //字节数组转字符串
  19. String dataString = new String(data,0,len);
  20. System.out.println(dataString);
  21. ds.close();
  22. }
  23. }

image.png

udp案例通讯

  1. package udpdemo;
  2. import java.io.BufferedReader;
  3. import java.io.IOException;
  4. import java.io.InputStreamReader;
  5. import java.net.*;
  6. import java.nio.charset.StandardCharsets;
  7. /**
  8. * 发送数据,当发送数据为886的时候,结束
  9. * **/
  10. public class senddemo {
  11. public static void main(String[] args) throws IOException {
  12. DatagramSocket ds = new DatagramSocket();
  13. //自己封装键盘录入,不适用Scanner
  14. BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
  15. String line;
  16. while ((line=br.readLine())!=null){
  17. if ("886".equals(line)){
  18. break;
  19. }
  20. //创建数据,并打包数据
  21. byte[] bys = line.getBytes(StandardCharsets.UTF_8);
  22. DatagramPacket dp = new DatagramPacket(bys,bys.length, InetAddress.getByName("192.168.93.1"),12345);
  23. ds.send(dp);
  24. }
  25. }
  26. }
  1. package udpdemo;
  2. import java.io.IOException;
  3. import java.net.DatagramPacket;
  4. import java.net.DatagramSocket;
  5. import java.net.SocketException;
  6. public class receive {
  7. public static void main(String[] args) throws IOException {
  8. DatagramSocket ds = new DatagramSocket(12345);
  9. while (true) {
  10. byte[] bys = new byte[1024];
  11. DatagramPacket dp = new DatagramPacket(bys, bys.length);
  12. ds.receive(dp);
  13. System.out.println(new String(dp.getData(), 0, dp.getLength()));
  14. // ds.close();
  15. }
  16. }
  17. }

image.pngimage.png

tcp

  1. TCP发送数据
  2. 创建客户端的Socket对象
  3. 获取输出流,写数据
  4. 释放资源
  5. TCP接收数据
  6. 创建服务端的Socket对象
  7. 获取输入流,读取数据,并把数据显示在控制台
  8. 释放资源

tcp通讯案例

  1. package TCP;
  2. import java.io.IOException;
  3. import java.io.OutputStream;
  4. import java.net.InetAddress;
  5. import java.net.Socket;
  6. import java.nio.charset.StandardCharsets;
  7. public class Clientdemo {
  8. public static void main(String[] args) throws IOException {
  9. // Socket s = new Socket(InetAddress.getByName("192.168.0.107"),10000);
  10. Socket s = new Socket("192.168.0.107",888);
  11. //获取输出流,写数据 在Socket中找方法
  12. // getOutputStream() 返回此套接字的输出流
  13. OutputStream os = s.getOutputStream();
  14. os.write("hellotcp".getBytes(StandardCharsets.UTF_8));
  15. // os.close();
  16. s.close();
  17. }
  18. }
  1. package TCP;
  2. import java.io.IOException;
  3. import java.io.InputStream;
  4. import java.net.ServerSocket;
  5. import java.net.Socket;
  6. public class serverdemo {
  7. public static void main(String[] args) throws IOException {
  8. //创建服务器端的Socket对象
  9. ServerSocket s = new ServerSocket(888);
  10. //监听客户端链接,返回一个Socket对象
  11. Socket socket = s.accept();
  12. //获取输入流,读数据
  13. InputStream is = socket.getInputStream();
  14. //打印数据
  15. byte[] bys = new byte[1024];
  16. int len = is.read(bys);
  17. String data = new String(bys,0,len);
  18. System.out.println(data);
  19. // socket.close();
  20. //socket是使用s实例化出来的,关闭最前面那个就好
  21. s.close();
  22. }
  23. }

tcp通讯案例-服务器有反馈

  1. package TCP01;
  2. import java.io.IOException;
  3. import java.io.InputStream;
  4. import java.io.OutputStream;
  5. import java.net.ServerSocket;
  6. import java.net.Socket;
  7. import java.nio.charset.StandardCharsets;
  8. public class serverdemo {
  9. public static void main(String[] args) throws IOException {
  10. ServerSocket s = new ServerSocket(1080);
  11. Socket socket = s.accept();
  12. InputStream is = socket.getInputStream();
  13. byte[] bys = new byte[1024];
  14. int len = is.read(bys);
  15. String data = new String(bys,0,len);
  16. System.out.println("服务器:"+data);
  17. //给出反馈,服务端写出数据
  18. OutputStream os = socket.getOutputStream();
  19. os.write("收到".getBytes(StandardCharsets.UTF_8));
  20. s.close();
  21. }
  22. }
  1. package TCP01;
  2. import java.io.IOException;
  3. import java.io.InputStream;
  4. import java.io.OutputStream;
  5. import java.net.Socket;
  6. import java.nio.charset.StandardCharsets;
  7. public class clientdemo {
  8. public static void main(String[] args) throws IOException {
  9. Socket s = new Socket("192.168.0.107",1080);
  10. OutputStream os = s.getOutputStream();
  11. os.write("hello tcp".getBytes(StandardCharsets.UTF_8));
  12. //客户端收数据
  13. InputStream is = s.getInputStream();
  14. byte[] bys = new byte[1024];
  15. int len = is.read(bys);
  16. String data = new String(bys,0,len);
  17. System.out.println("客户端:"+data);
  18. s.close();
  19. }
  20. }

tcp通讯案例-手动输入写入文本

  1. package TCP02;
  2. import java.io.*;
  3. import java.net.ServerSocket;
  4. import java.net.Socket;
  5. public class serverdemo {
  6. public static void main(String[] args) throws IOException {
  7. ServerSocket s = new ServerSocket(1079);
  8. Socket socket = s.accept();
  9. //接收数据
  10. BufferedReader br = new BufferedReader(new InputStreamReader(socket.getInputStream()));
  11. //把数据写入文本文件
  12. BufferedWriter bw = new BufferedWriter(new FileWriter("F:\\idea\\ideaprojects\\pachong\\src\\main\\java\\TCP02\\tcp02.txt"));
  13. String line;
  14. while ((line= br.readLine())!=null){
  15. bw.write(line);
  16. bw.newLine();
  17. bw.flush();
  18. }
  19. s.close();
  20. }
  21. }
  1. package TCP02;
  2. import java.io.*;
  3. import java.net.Socket;
  4. public class clientdemo {
  5. public static void main(String[] args) throws IOException {
  6. Socket s = new Socket("192.168.0.107",1079);
  7. //数据来自于键盘录入
  8. BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
  9. //封装输出流对象
  10. BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(s.getOutputStream()));
  11. String line;
  12. while ((line=br.readLine())!=null){
  13. if ("886".equals(line)){
  14. break;
  15. }
  16. bw.write(line);
  17. bw.newLine();
  18. bw.flush();
  19. }
  20. s.close();
  21. }
  22. }

tcp通讯案例-文本到文本

  1. package TCP03;
  2. import java.io.*;
  3. import java.net.ServerSocket;
  4. import java.net.Socket;
  5. public class serverdemo {
  6. public static void main(String[] args) throws IOException {
  7. ServerSocket s = new ServerSocket(1078);
  8. Socket socket = s.accept();
  9. //接收数据
  10. BufferedReader br = new BufferedReader(new InputStreamReader(socket.getInputStream()));
  11. //把数据写入文本文件
  12. BufferedWriter bw = new BufferedWriter(new FileWriter("F:\\idea\\ideaprojects\\pachong\\src\\main\\java\\TCP03\\tcp3.txt"));
  13. String line;
  14. while ((line= br.readLine())!=null){
  15. bw.write(line);
  16. bw.newLine();
  17. bw.flush();
  18. }
  19. s.close();
  20. }
  21. }
  1. package TCP03;
  2. import java.io.*;
  3. import java.net.Socket;
  4. public class clientdemo {
  5. public static void main(String[] args) throws IOException {
  6. Socket s = new Socket("192.168.0.107",1078);
  7. //封装文本文件的数据
  8. BufferedReader br = new BufferedReader(new FileReader("F:\\idea\\ideaprojects\\pachong\\src\\main\\java\\TCP02\\tcp02.txt"));
  9. //封装输出流写写数据
  10. BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(s.getOutputStream()));
  11. String line;
  12. while ((line= br.readLine())!=null){
  13. bw.write(line);
  14. bw.newLine();
  15. bw.flush();
  16. }
  17. br.close();
  18. s.close();
  19. }
  20. }

tcp通讯案例-阻塞问题及多线程

  1. package TCP04;
  2. import java.io.IOException;
  3. import java.net.ServerSocket;
  4. import java.net.Socket;
  5. public class serverdemo {
  6. public static void main(String[] args) throws IOException {
  7. ServerSocket s = new ServerSocket(1086);
  8. while (true){
  9. Socket socket = s.accept();
  10. //为每一个客户端开启一个线程
  11. new Thread(new ServerThread(socket)).start();
  12. }
  13. }
  14. }
  1. package TCP04;
  2. import java.io.*;
  3. import java.net.Socket;
  4. public class ServerThread implements Runnable {
  5. private Socket socket;
  6. public ServerThread(Socket socket) {
  7. this.socket=socket;
  8. }
  9. @Override
  10. public void run() {
  11. //接收数据写到文本文件
  12. try {
  13. BufferedReader br = new BufferedReader(new InputStreamReader(socket.getInputStream()));
  14. // BufferedWriter bw = new BufferedWriter(new FileWriter("F:\\idea\\ideaprojects\\pachong\\src\\main\\java\\TCP04\\tcp04.txt"));
  15. int count = 0;
  16. File file = new File("F:\\idea\\ideaprojects\\pachong\\src\\main\\java\\TCP04\\tcp["+count+"].txt");
  17. while (file.exists()){
  18. count++;
  19. file = new File("F:\\idea\\ideaprojects\\pachong\\src\\main\\java\\TCP04\\tcp["+count+"].txt");
  20. }
  21. BufferedWriter bw = new BufferedWriter(new FileWriter(file));
  22. String line;
  23. while ((line= br.readLine())!=null){
  24. bw.write(line);
  25. bw.newLine();
  26. bw.flush();
  27. }
  28. //给出反馈
  29. BufferedWriter bwserver = new BufferedWriter(new OutputStreamWriter(socket.getOutputStream()));
  30. bwserver.write("文件上传成功");
  31. bwserver.newLine();
  32. bwserver.flush();
  33. socket.close();
  34. } catch (IOException e) {
  35. e.printStackTrace();
  36. }
  37. }
  38. }
  1. package TCP04;
  2. import java.io.*;
  3. import java.net.Socket;
  4. public class clientdemo {
  5. public static void main(String[] args) throws IOException {
  6. Socket s = new Socket("192.168.0.107",1086);
  7. //封装文本文件的数据
  8. BufferedReader br = new BufferedReader(new FileReader("F:\\idea\\ideaprojects\\pachong\\src\\main\\java\\TCP02\\tcp02.txt"));
  9. //封装输出流写写数据
  10. BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(s.getOutputStream()));
  11. String line;
  12. while ((line= br.readLine())!=null){
  13. bw.write(line);
  14. bw.newLine();
  15. bw.flush();
  16. }
  17. //自定义结束标记,当服务端接收到就会关闭接收,不然服务端就会继续保持接收状态,而客户端已经在等待反馈了,就会卡死
  18. // bw.write("886");
  19. // bw.newLine();
  20. // bw.flush();
  21. //停止上面的套接字,官方解决阻塞方法
  22. s.shutdownOutput();
  23. BufferedReader brclient = new BufferedReader(new InputStreamReader(s.getInputStream()));
  24. String data = brclient.readLine();
  25. System.out.println("服务器反馈:"+data);
  26. br.close();
  27. s.close();
  28. }
  29. }

lambda

标准格式

  1. 格式:(形式参数)->{代码块}
  2. 形式参数:如果有多个参数,参数之间用逗号隔开,没有参数,留空即可
  3. ->:固定写法,代表指定动作
  4. 代码块:具体要做的事情,也就是以前写的方法体内容
  5. 使用前提:
  6. 有一个接口
  7. 接口中有且仅有一个抽象方法
  8. Lambda和匿名内部类,都代表一个接口的匿名实现----某网友
  9. lambda表达式和匿名内部类的区别:
  10. 所需类型不同:
  11. 匿名内部类:可以是接口、抽象类、具体类
  12. lambda表达式:只能是接口
  13. 使用限制不同:
  14. 如果接口中有且仅有一个抽象方法,两者都可以使用
  15. 如果接口中有于一个抽象方法,不能使用lambda表达式
  16. 实现原理不同:
  17. 匿名内部类:编译后,产生一个单独的.class字节码文件
  18. lambda表达式:编译后,没有一个单独的.class字节码文件,对应的字节码会在运行的时候动态生成

lambdademo01

  1. package myLambda;
  2. /**
  3. * 启动一个多线程,使用多种方式,看其中的差别和代码量
  4. *
  5. */
  6. public class lambdademo01 {
  7. public static void main(String[] args) {
  8. //正常启动一个多线程: 创建一个线程类,启动多线程
  9. // myThread mt = new myThread();
  10. // Thread thread= new Thread(mt);
  11. // thread.start();
  12. //匿名内部类的方式实现
  13. // new Thread(new Runnable() {
  14. // @Override
  15. // public void run() {
  16. // System.out.println("起飞,多线程启动了!");
  17. // }
  18. // }).start();
  19. //Lambda实现
  20. new Thread(()->{
  21. System.out.println("起飞,多线程开始启动了!");
  22. }).start();
  23. }
  24. }

lambdademo02

  1. package myLambda01;
  2. public class eatabledemo {
  3. public static void main(String[] args) {
  4. //接口的实现类实例化一个对象,然后再传该对象给调用方法,从而成功调用
  5. eatableImpl e =new eatableImpl();
  6. useeatable(e);
  7. //使用匿名内部类实现上面的功能
  8. useeatable(new eatable() {
  9. @Override
  10. public void eat() {
  11. System.out.println("继续干饭!");
  12. }
  13. });//这里在括号后面加一个.,可以变成lambda,但是和下面的有差异
  14. //使用lambda实现上面的功能
  15. useeatable(() -> {
  16. System.out.println("快速干饭!");
  17. });
  18. }
  19. //写了一个方法调用eat方法,但是不能之间调用,需要eatable接口的实现类对象才可以
  20. private static void useeatable(eatable e){
  21. e.eat();
  22. }
  23. }
  1. package myLambda01;
  2. public interface eatable {
  3. //抽象方法,需要该接口的实现类才可以调用
  4. void eat();
  5. }
  1. package myLambda01;
  2. public class eatableImpl implements eatable{
  3. @Override
  4. public void eat() {
  5. System.out.println("干饭干饭!");
  6. }
  7. }

lambdademo03 带参无返回值

  1. package myLambda;
  2. import java.nio.charset.StandardCharsets;
  3. public class flyabledemo {
  4. public static void main(String[] args) {
  5. useflyable(new flyable() {
  6. @Override
  7. public void fly(String s) {
  8. System.out.println(s);
  9. System.out.println("好好吃饭");
  10. }
  11. });
  12. System.out.println("--------------");
  13. //lambda
  14. useflyable((String s) -> {
  15. System.out.println(s);
  16. System.out.println("好好睡觉");
  17. });
  18. }
  19. private static void useflyable(flyable f){
  20. f.fly("好好生活");
  21. }
  22. }
  1. package myLambda;
  2. public interface flyable {
  3. void fly(String s);
  4. }

lambdademo04 带参有返回值

  1. package myLambda;
  2. /*
  3. * lambda带参有返回值:(形式参数) -> {代码块}
  4. * 参数在()里面写,返回值在代码块里面写,写返回什么就是什么,因为在接口的抽象方法里面并没有写返回值
  5. * */
  6. public class addabledemo {
  7. public static void main(String[] args) {
  8. useaddable((int x,int y) ->{
  9. // return x+y; //30
  10. return x-y; //20
  11. });
  12. }
  13. private static void useaddable(addable a){
  14. int sum = a.add(10,20);
  15. System.out.println(sum);
  16. }
  17. }
  1. package myLambda;
  2. public interface addable {
  3. int add(int x,int y);
  4. }

接口

接口组成

  1. 接口的组成
  2. 常量
  3. public static final
  4. 抽象方法
  5. public abstract
  6. 默认方法Java8
  7. 静态方法Java8
  8. 私有方法Java9
  9. 当需要增加接口中的方法的时候,如果增加抽象方法,那么就需要在实现类里面重写该方法 实现类过多时,就工作量大
  10. 或者新写一个接口,然后需要该接口的实现类多实现一个接口,但是就会出现一中情况:实现类实现了很多接口
  11. 静态方法,只有接口才可以调用,不能通过对象和类调用 因为当实现类实现多个接口的时候,如果不同接口中有同名静态方法,解释器就不知道是哪个的静态方法

接口静态方法

  1. package jiekou01;
  2. public class myIFdemo {
  3. public static void main(String[] args) {
  4. myInterFace my = new myIFimp();
  5. my.show();
  6. my.method();
  7. // my.test();
  8. // myIFimp.test();
  9. // 上面都不能调用静态方法,只有接口才可以 因为当实现类实现多个接口的时候,如果不同接口中有同名静态方法,解释器就不知道是哪个的静态方法
  10. myInterFace.test();
  11. testface.test();
  12. }
  13. }
  1. package jiekou01;
  2. public class myIFdemo {
  3. public static void main(String[] args) {
  4. myInterFace my = new myIFimp();
  5. my.show();
  6. my.method();
  7. // my.test();
  8. // myIFimp.test();
  9. // 上面都不能调用静态方法,只有接口才可以 因为当实现类实现多个接口的时候,如果不同接口中有同名静态方法,解释器就不知道是哪个的静态方法
  10. myInterFace.test();
  11. testface.test();
  12. }
  13. }
  1. package jiekou01;
  2. public interface testface {
  3. static void test(){
  4. System.out.println("testface 中的静态方法执行了");
  5. }
  6. }
  1. package jiekou01;
  2. public class myIFimp implements myInterFace,testface{
  3. @Override
  4. public void show() {
  5. System.out.println("重写shwo方法");
  6. }
  7. }

接口默认方法

  1. package jiekou;
  2. public class myIFdemo {
  3. public static void main(String[] args) {
  4. myInterface my = new myIFimp();
  5. my.show1();
  6. my.show2();
  7. my.show3();
  8. }
  9. }
  1. package jiekou;
  2. public interface myInterface {
  3. void show1();
  4. void show2();
  5. //当需要增加接口中的方法的时候,如果增加抽象方法,那么就需要在实现类里面重写该方法 实现类过多时,就工作量大
  6. // 或者新写一个接口,然后需要该接口的实现类多实现一个接口,但是就会出现一中情况:实现类实现了很多接口
  7. // 这个地方是灰色的,说明可以去掉这个pubulic
  8. public default void show3(){
  9. System.out.println("show3");
  10. }
  11. }
  1. package jiekou;
  2. public class myIFimp implements myInterface{
  3. @Override
  4. public void show1() {
  5. System.out.println("one show1");
  6. }
  7. @Override
  8. public void show2() {
  9. System.out.println("one show2");
  10. }
  11. @Override
  12. public void show3() {
  13. System.out.println("one show3");
  14. }
  15. }
  1. package jiekou;
  2. public class myIFimptwo implements myInterface{
  3. @Override
  4. public void show1() {
  5. System.out.println("two show1");
  6. }
  7. @Override
  8. public void show2() {
  9. System.out.println("two show2");
  10. }
  11. }

函数式接口

示例1

  1. package hanshushijiekou;
  2. //Runnable是一个函数式接口
  3. public class runnabledemo {
  4. public static void main(String[] args) {
  5. //启动一个线程,首先需要实例化一个Thread类的对象,这个在下面的startThread方法中就完成了
  6. // 所以这里使用这个方法,里面使用匿名内部类的方式的时候,就相当于已经创建好Thread的对象,并且在重写run后start
  7. startThread(new Runnable() {
  8. @Override
  9. public void run() {
  10. System.out.println(Thread.currentThread().getName()+"线程启动");
  11. }
  12. });
  13. startThread(() -> System.out.println(Thread.currentThread().getName()+"线程启动"));
  14. }
  15. private static void startThread(Runnable runnable){
  16. // Thread r = new Thread(runnable);
  17. // r.start();
  18. new Thread(runnable).start();
  19. }
  20. }

示例2

  1. package hanshushijiekou;
  2. import java.util.ArrayList;
  3. import java.util.Collection;
  4. import java.util.Collections;
  5. import java.util.Comparator;
  6. public class comparatordemo {
  7. public static void main(String[] args) {
  8. ArrayList<String> array = new ArrayList<String>();
  9. array.add("ccccc");
  10. array.add("aa");
  11. array.add("b");
  12. array.add("dddd");
  13. System.out.println("排序前"+array);
  14. Collections.sort(array,getComparator());
  15. System.out.println("排序后"+array);
  16. }
  17. //写一个方法,返回值类型是Comparator<String>
  18. // Comparator<String>是一个函数式接口
  19. // 如果一个方法的返回值是一个函数式接口,可以是使用lambda表达式作为结果返回
  20. private static Comparator<String> getComparator(){
  21. //匿名内部类方式实现
  22. // Comparator<String> comp = new Comparator<String>() {
  23. // @Override
  24. // public int compare(String s1, String s2) {
  25. // return s1.length()-s2.length();
  26. // }
  27. // };
  28. // return comp;
  29. // return new Comparator<String>() {
  30. // @Override
  31. // public int compare(String s1, String s2) {
  32. // return s1.length()-s2.length();
  33. // }
  34. // };
  35. // return (String s1,String s2) -> {
  36. // return s1.length()-s2.length();
  37. // };
  38. //
  39. return (s1,s2) -> s1.length() - s2.length();
  40. }
  41. }

函数式接口-Predicate、Function

  1. package hanshishijiekou;
  2. /*
  3. * Predicate<T> 常用四个方法
  4. * boolean test() 对给定的参数进行判断(判断逻辑由lambda表达式实现),返回一个布尔值
  5. * default Predicate<T> negate() 返回一个逻辑的否定,对应逻辑非
  6. * default Predicate<T> and(Predicate other) 返回一个组合判断,对应短路与
  7. * default Predicate<T> or(Predicate other) 返回一个组合判断,对应短路或
  8. *
  9. * 案例条件:
  10. * 字符串数组中有多条信息,按要求拼装出来到集合ArrayList中
  11. * 满足:姓名长度大于2,年龄大于30
  12. *
  13. * */
  14. import java.util.ArrayList;
  15. import java.util.function.Function;
  16. import java.util.function.Predicate;
  17. public class PredicateTest {
  18. public static void main(String[] args) {
  19. String[] strArr = {"林青霞,30", "柳岩,34", "张曼玉,35", "貂蝉,31", "王祖贤,33"};
  20. ArrayList<String> array = myFilter(strArr, s -> s.split(",")[0].length() > 2,
  21. s -> Integer.parseInt(s.split(",")[1]) > 30);
  22. System.out.println("符合条件的有:");
  23. for (String str : array) {
  24. System.out.println(str);
  25. }
  26. //其它筛选-Function
  27. System.out.println("*************");
  28. convert("100",s -> Integer.parseInt(s),a ->String.valueOf(a+566) );
  29. System.out.println("*************");
  30. String s ="林青霞,30";
  31. //三个函数似乎并不是用函数名去传递,比如这个位置会报错
  32. // convert1(s,s1 -> s1.split(",")[1],s2 -> Integer.parseInt(s1),i -> i + 70);
  33. convert1(s,s1 -> s1.split(",")[1],s2 -> Integer.parseInt(s2),i -> i + 70);
  34. //中间这里可以改成方法引用的方式
  35. convert1(s,s1 -> s1.split(",")[1],Integer::parseInt,i -> i + 70);
  36. //甚至于可以写成各种样子
  37. convert1(s,ss -> ss.split(",")[1],ss -> Integer.parseInt(ss),i -> i + 70);
  38. convert1(s,ss -> ss.split(",")[1],ss -> Integer.parseInt(ss),ss -> ss + 70);
  39. }
  40. private static ArrayList<String> myFilter(String[] strArray, Predicate<String> pre1, Predicate<String> pre2) {
  41. //创建一个数组
  42. ArrayList<String> array = new ArrayList<String>();
  43. //遍历外部传入的数组strArray里面的数据,符合条件的就添加到数组array里面
  44. for (String str : strArray) {
  45. if (pre1.and(pre2).test(str)) {
  46. array.add(str);
  47. System.out.println("录入:");
  48. System.out.println(str);
  49. System.out.println("---------");
  50. }
  51. }
  52. return array;
  53. }
  54. private static void convert(String s , Function<String,Integer> fun1,Function<Integer,String> fun2){
  55. String ss = fun1.andThen(fun2).apply(s);
  56. System.out.println(ss);
  57. }
  58. private static void convert1(String s, Function<String, String> fun1,Function<String, Integer> fun2,Function<Integer, Integer> fun3){
  59. int i = fun1.andThen(fun2).andThen(fun3).apply(s);
  60. System.out.println(i);
  61. }
  62. }

Stream流

反射

demo1

  1. package fanshe;
  2. public class student {
  3. private String name;
  4. private int age;
  5. public String address;
  6. public student() {
  7. }
  8. private student(String name) {
  9. this.name = name;
  10. }
  11. public student(String name, int age, String address) {
  12. this.name = name;
  13. this.age = age;
  14. this.address = address;
  15. }
  16. public String getName() {
  17. return name;
  18. }
  19. public void setName(String name) {
  20. this.name = name;
  21. }
  22. public int getAge() {
  23. return age;
  24. }
  25. public void setAge(int age) {
  26. this.age = age;
  27. }
  28. public String getAddress() {
  29. return address;
  30. }
  31. public void setAddress(String address) {
  32. this.address = address;
  33. }
  34. private void function(){
  35. System.out.println("function");
  36. }
  37. public void method(){
  38. System.out.println("method");
  39. }
  40. public void method1(String s){
  41. System.out.println("method"+s);
  42. }
  43. @Override
  44. public String toString() {
  45. return "student{" +
  46. "name='" + name + '\'' +
  47. ", age=" + age +
  48. ", address='" + address + '\'' +
  49. '}';
  50. }
  51. }
  1. package fanshe;
  2. //反射获取构造方法并使用
  3. import java.lang.reflect.Constructor;
  4. import java.lang.reflect.InvocationTargetException;
  5. public class refl {
  6. public static void main(String[] args) throws ClassNotFoundException, NoSuchMethodException, InvocationTargetException, InstantiationException, IllegalAccessException {
  7. Class<?> c = Class.forName("fanshe.student");
  8. //getDeclaredConstructor获取私有的构造方法
  9. Constructor<?> con = c.getDeclaredConstructor(String.class);
  10. //私有的构造方法不能用于实例化对象,会进行访问检查
  11. // Object obj = con.newInstance("lww");
  12. // System.out.println(obj);
  13. //暴力反射实例化对象,取消访问检查
  14. con.setAccessible(true);
  15. Object obj = con.newInstance("lww");
  16. System.out.println(obj);
  17. }
  18. }
  1. package fanshe;
  2. //反射获取变量并使用
  3. import java.io.File;
  4. import java.lang.reflect.Constructor;
  5. import java.lang.reflect.Field;
  6. import java.lang.reflect.InvocationTargetException;
  7. public class refl01 {
  8. public static void main(String[] args) throws ClassNotFoundException, NoSuchFieldException, NoSuchMethodException, InvocationTargetException, InstantiationException, IllegalAccessException {
  9. Class<?> c = Class.forName("fanshe.student");
  10. // Field[] filds = c.getFields(); //这个是获取公有变量的,所以没有数据
  11. Field[] filds = c.getDeclaredFields(); //获取所有变量的
  12. for(Field field:filds){
  13. System.out.println(field);
  14. }
  15. //获取单个的
  16. Field fild01 = c.getField("address");
  17. // Field fild02 = c.getDeclaredField("address");
  18. //获取无参构造方法创建对象
  19. Constructor<?> con = c.getConstructor();
  20. Object obj = con.newInstance();
  21. //Field类中有一个set方法 给obj对象的成员变量address赋值为sz
  22. fild01.set(obj,"sz");
  23. System.out.println(obj);
  24. }
  25. }

demo2

  1. package fanshe;
  2. public class stu {
  3. private String name;
  4. int age;
  5. public String address;
  6. public stu() {
  7. }
  8. private stu(String name) {
  9. this.name = name;
  10. }
  11. stu(String name, int age) {
  12. this.name = name;
  13. this.age = age;
  14. }
  15. public stu(String name, int age, String address) {
  16. this.name = name;
  17. this.age = age;
  18. this.address = address;
  19. }
  20. public String getName() {
  21. return name;
  22. }
  23. public void setName(String name) {
  24. this.name = name;
  25. }
  26. public int getAge() {
  27. return age;
  28. }
  29. public void setAge(int age) {
  30. this.age = age;
  31. }
  32. public String getAddress() {
  33. return address;
  34. }
  35. public void setAddress(String address) {
  36. this.address = address;
  37. }
  38. @Override
  39. public String toString() {
  40. return "stu{" +
  41. "name='" + name + '\'' +
  42. ", age=" + age +
  43. ", address='" + address + '\'' +
  44. '}';
  45. }
  46. }
  1. package fanshe;
  2. import java.lang.reflect.Constructor;
  3. import java.lang.reflect.Field;
  4. import java.lang.reflect.InvocationTargetException;
  5. public class refl02 {
  6. public static void main(String[] args) throws ClassNotFoundException, NoSuchMethodException, InvocationTargetException, InstantiationException, IllegalAccessException, NoSuchFieldException {
  7. Class<?> c = Class.forName("fanshe.stu");
  8. Constructor<?> con = c.getConstructor();
  9. Object obj = con.newInstance();
  10. Field nameF = c.getDeclaredField("name");
  11. nameF.setAccessible(true);//私有变量访问受限,有访问检查,暴力访问
  12. nameF.set(obj,"lww");
  13. System.out.println(obj);
  14. Field ageF = c.getDeclaredField("age");
  15. // ageF.setAccessible(true);
  16. ageF.set(obj,20);
  17. System.out.println(obj);
  18. Field addressF = c.getDeclaredField("address");
  19. addressF.set(obj,"sz");
  20. System.out.println(obj);
  21. }
  22. }

demo3

  1. package fanshe;
  2. //获取方法并使用
  3. import java.lang.reflect.Constructor;
  4. import java.lang.reflect.InvocationTargetException;
  5. import java.lang.reflect.Method;
  6. public class refl03 {
  7. public static void main(String[] args) throws ClassNotFoundException, NoSuchMethodException, InvocationTargetException, InstantiationException, IllegalAccessException {
  8. Class<?> c = Class.forName("fanshe.stu");
  9. // Method[] methods = c.getMethods();
  10. Method[] methods = c.getDeclaredMethods();
  11. for (Method method:methods){
  12. System.out.println(method);
  13. }
  14. System.out.println("------");
  15. //获取单个方法
  16. Method method1 = c.getMethod("method1");
  17. Constructor<?> con = c.getConstructor();
  18. Object obj = con.newInstance();
  19. method1.invoke(obj);
  20. }
  21. }

demo4

  1. package fanshe;
  2. //反射获取成员方法并使用练习
  3. import java.lang.reflect.Constructor;
  4. import java.lang.reflect.InvocationTargetException;
  5. import java.lang.reflect.Method;
  6. public class refl01 {
  7. public static void main(String[] args) throws ClassNotFoundException, NoSuchMethodException, InvocationTargetException, InstantiationException, IllegalAccessException {
  8. Class<?> c = Class.forName("fanshe.stu");
  9. Constructor<?> con = c.getConstructor();
  10. Object obj = con.newInstance();
  11. Method m1 = c.getMethod("method1");
  12. m1.setAccessible(true);
  13. m1.invoke(obj);
  14. Method m2 = c.getMethod("method2", String.class);
  15. m2.invoke(obj,"lww");
  16. Method m3 = c.getMethod("method3", String.class, int.class);
  17. Object o = m3.invoke(obj, " lww", 30);
  18. System.out.println(o);
  19. Method f = c.getDeclaredMethod("function");
  20. f.setAccessible(true);
  21. f.invoke(obj);
  22. }
  23. }

demo5

  1. package fanshe1;
  2. import java.io.FileNotFoundException;
  3. import java.io.FileReader;
  4. import java.io.IOException;
  5. import java.lang.reflect.Constructor;
  6. import java.lang.reflect.InvocationTargetException;
  7. import java.lang.reflect.Method;
  8. import java.util.Properties;
  9. public class fefl02 {
  10. public static void main(String[] args) throws IOException, ClassNotFoundException, NoSuchMethodException, InvocationTargetException, InstantiationException, IllegalAccessException {
  11. /*
  12. * class.txt
  13. * className=fanshe1.stu
  14. * methodName=study
  15. * */
  16. Properties prop = new Properties();//加载使用的类
  17. FileReader fr = new FileReader("F:\\idea\\ideaprojects\\helloworld\\wangluobiancheng\\src\\fanshe1\\class.txt");
  18. // FileReader fr = new FileReader("wangluobiaocheng\\fanshe1\\class.txt");
  19. prop.load(fr);
  20. fr.close();
  21. String className = prop.getProperty("className");
  22. String methodName = prop.getProperty("methodName");
  23. Class<?> c = Class.forName(className);//fanshe1.stu
  24. Constructor<?> con = c.getConstructor();
  25. Object obj = con.newInstance();
  26. Method m = c.getMethod(methodName);//study
  27. m.invoke(obj);
  28. }
  29. }
  1. className=fanshe1.stu
  2. methodName=study
  1. package fanshe1;
  2. public class stu {
  3. public void study(){
  4. System.out.println("hhxx,ttxs");
  5. }
  6. }

注解

demo

  1. package zhujie;
  2. import java.lang.annotation.ElementType;
  3. import java.lang.annotation.Retention;
  4. import java.lang.annotation.RetentionPolicy;
  5. import java.lang.annotation.Target;
  6. @Retention(RetentionPolicy.RUNTIME)
  7. @Target(ElementType.METHOD)
  8. public @interface Check {
  9. }
  1. package zhujie;
  2. public class calc {
  3. @Check
  4. public void add(){
  5. System.out.println("1+0="+(1+0));
  6. }
  7. @Check
  8. public void div(){
  9. System.out.println("1/0="+(1/0));//这个位置有一个除0异常,分母不能为0
  10. }
  11. }
  1. package zhujie;
  2. import java.io.BufferedWriter;
  3. import java.io.FileWriter;
  4. import java.io.IOException;
  5. import java.lang.reflect.InvocationTargetException;
  6. import java.lang.reflect.Method;
  7. public class testCheck {
  8. public static void main(String[] args) throws IOException {
  9. calc c = new calc();
  10. Class<? extends calc> cls = c.getClass();
  11. Method[] methods = cls.getMethods();
  12. int num = 0;
  13. BufferedWriter bw = new BufferedWriter(new FileWriter("BUG.txt"));
  14. for (Method method : methods) {
  15. if (method.isAnnotationPresent(Check.class)){
  16. try {
  17. method.invoke(c);
  18. } catch (Exception e) {
  19. num ++;
  20. bw.write(method.getName()+"方法出异常");
  21. bw.newLine();
  22. bw.write("异常名称:"+e.getCause().getClass().getSimpleName());
  23. bw.newLine();
  24. bw.write("异常原因:"+e.getCause().getMessage());
  25. bw.newLine();
  26. bw.write("----------------");
  27. bw.newLine();
  28. }
  29. }
  30. }
  31. bw.write("一共"+num+"次异常");
  32. bw.flush();
  33. bw.close();
  34. }
  35. }