import org.junit.Test;
import java.io.*;
import java.util.*;
public class Demo2 {
public static void main(String[] args) throws IOException {
/*
数组和集合的区别
长度
数组的长度是固定的
集合的长度可变
内容不同
元素的数据类型不同
*/
// int[] arr= new int[5];
// String[] strs =new String[5];
// List list =new ArrayList();
// list.add("sss");
// list.add(1);
//常用集合有哪些
// list ,ArrayList,LinkedList,Set,HashSet
// 单列集合
// Collection
// List 可重复,有序 底层数组
// Set 唯一 ,无序 底层链表
// 双列集合
// Map 键 值
// HashMap 键唯一的且无序
// TreeMap 键唯一,排序
// 异常
// 在程序运行过程中出现的错误
// 异常的分类
// 错误 你的代码写错了
// 异常
// 运行时异常,RuntimeException 一般时你的代码写错了,提高代码的严谨性可以控制
// 非运行时异常 我们要处理的但是又是处理不了的
// 异常处理
// 处理的是非运行时异常
// try{
可能会出现异常的代码
// }catch (Exception e){
// e.printStackTrace();
// }finally{
// //必须会执行的代码
// }
// 抛出异常 throws 异常的类
// int i =0;
// while(true){
// File file =new File("D://demo","demo"+i);
// file.mkdirs();
// i++;
// if(i==1000){
// break;
// }
// }
// IO流
// Java程序中文件传输的方式
// 数据类型
// 字节流 可以传输任何的文件
// 字节输入流 读取文件 InputStream
// FileInputStream
// 字节输出流 写出文件 OutputStream
// FileOutputStream
// 字符流 可以传输文本打开可以看明白的文件
// 字符输入流 读取文件 Reader
// InputStreamReader
// 字符输出流 写出文件 Writer
// OutputStreamWriter
// 输入流
FileInputStream fis =new FileInputStream("C:\\Users\\Administrator\\Desktop\\k16035\\2.jpg");
// 输出流
FileOutputStream fos =new FileOutputStream("D:\\idea\\K16035_4\\img\\2.jpg");
//定义一个数组
byte[] bys =new byte[1024];
// 返回值变量
int len;
while((len=fis.read(bys))!=-1){
fos.write(bys,0,len);
fos.flush();
}
fos.close();
fis.close();
}
@Test
public void ioText() throws IOException {
//字符流复制文件
// 字符输入流
FileReader fileReader =new FileReader("C:\\Users\\Administrator\\Desktop\\k16035\\abc.txt");
// 字符输出流
FileWriter fileWriter =new FileWriter("D:\\idea\\K16035_4\\img\\abc.txt");
int len ;
while((len = fileReader.read())!=-1){
fileWriter.write(len);
fileWriter.flush();
}
fileWriter.close();
fileReader.close();
}
}
实训day4 java
最新推荐文章于 2024-11-04 22:26:34 发布