标签:style class blog code java http
一:File 类
package com.shellway.io; import java.io.File; import java.io.IOException; import org.junit.Test; public class IOtest { @Test public void test() throws IOException{ File file = new File("helloo.txt"); //获取文件的名称 String fileName = file.getName(); System.out.println(fileName); //获取文件的绝对路径 String filePath = file.getAbsolutePath(); System.out.println(filePath); //为文件重命名,不仅文件名变了且原来的文件路径跟着下面的路径变 // file.renameTo(new File("D:\\test\\day03\\helloo.txt")); String path = file.getPath(); System.out.println(path); //文件检测相关方法 System.out.println(file.exists()); File dir = new File("shellway"); System.out.println(dir.isDirectory()); System.out.println(dir.isFile()); //获取文件的常规信息 System.out.println(file.length());//单位为字节,一个汉字为两个字节,换行会加两个字节 //文件的相关操作 File file2 = new File("adc.txt"); file2.createNewFile();//创建一个空的文件 File file3 = new File("adc"); file3.mkdir();//创建一个空的目录 file2.delete();//删除一个文件 } }
1、IO流的分类
1 package com.shellway.io; 2 import java.io.File; 3 import java.io.FileInputStream; 4 import java.io.FileNotFoundException; 5 import java.io.FileReader; 6 import java.io.IOException; 7 import java.io.InputStream; 8 import java.io.Reader; 9 import org.junit.Test; 10 public class IOtest { 11 /** 12 * 测试字符输入流 13 * @throws IOException 14 */ 15 @Test 16 public void testReader() throws IOException { 17 Reader reader = new FileReader("helloo.txt"); 18 char []buffer = new char[10]; 19 int len = 0; 20 while((len = reader.read(buffer)) != -1){ 21 for(int i = 0;i < len;i++){ 22 System.out.print(buffer[i]); 23 } 24 } 25 reader.close(); 26 } 27 /** 28 * 测试字节输入流 29 * @throws IOException 30 */ 31 @Test 32 public void testInputStream() throws IOException { 33 //1、创建一个字符输入流 34 InputStream in = new FileInputStream("helloo.txt"); 35 //2、读取文件内容 36 //2、1一次读取一个字符,效率很低,不建议这样读,-1表示读到文件的结尾 37 int result = in.read(); 38 while(result!=-1){ 39 System.out.print((char)result); 40 result = in.read(); 41 } 42 //2、2一次读取一组字符, 43 byte []buffer = new byte[10]; 44 int length = 0; 45 while((length = in.read(buffer))!=-1){ 46 for(int i = 0;i<length;i++){ //注意不能加“=”号 47 System.out.print((char)buffer[i]); 48 } 49 //2、3把内容读取到字节数组的部分连续的元素中 50 byte []result1 = new byte[1024*10]; 51 //10为字节数组的开始部分,第三个为实际长度。 52 in.read(result1, 10, in.available()); 53 } 54 //3、关闭字符流 55 in.close(); 56 } 57 }
复习java基础第六天(IO),布布扣,bubuko.com
标签:style class blog code java http
原文地址:http://www.cnblogs.com/shellway/p/3792080.html