file类和io流

时间:2022-11-26 17:51:25

一、file类

  file类是一个可以用其对象表示目录或文件的一个Java.io包中的类

 import java.io.File;
import java.io.IOException;
public class Test3 { public static void main(String[] args) throws IOException { File f = new File("iofile.txt"); //file类创建对象 System.out.println(f.exists()); //判断是否存在 if(f.exists()){
f.delete(); //删除文件
System.out.println(f.delete());
} f.createNewFile(); //创建新文件
System.out.println(f.createNewFile()); System.out.println(f.getName()); //获取名字 System.out.println(f.getAbsolutePath());//绝对路径 System.out.println(f.getParent()); //父目录 System.out.println(f.length()); //大小 System.out.println(f.isAbsolute()); //是否为绝对路径 } }

二、IO流

  IO流是一组从源到目的地的有序数据序列

  1、inputstream

    

         import java.io.FileInputStream;                //导入包
import java.io.IOException; //抛出异常 public class Input{ public static void main(String[] args) { InputStream();
} public static void InputStream() { //封装方法
FileInputStream f = new FileInputStream("D:\\workspace\\maji\\input.txt"); //创建输入流类的对象 byte[] a = new byte[300]; //新建一个300长度的数组对象
int lenth = 0;
while ( lenth != -1) { //检测是否读完源文件 System.out.println(new String(a, 0, lenth)); //把最多lenth个的数据读入byte数组a中 lenth = f.read(a); //读取数组长度
} f.close(); //关闭输入流 } }

    2、output

import java.io.FileOutputStream;                        //导入包
import java.io.IOException; public class Test4 { public static void main(String[] args) throws IOException {
outputStream(); } public static void outputStream() throws IOException { //封装方法
FileOutputStream f = new FileOutputStream("Test.txt");//创建输出流类的对象 String arr = "hello world!"; //字符串
byte[] a = arr.getBytes(); //将此arr转为为 byte存入a数组中
f.write(a); //读取a f.close(); //结束 } }