一、File类的常用方法
File file=new File("D:\\abc");
File file1=new File("D:\\abc\\hello.txt");
boolean exists = file1.exists();
boolean isFile = file1.isFile();
boolean idDirectory = file1.isDirectory();
String path = file1.getPath();
String absolutePath = file1.getAbsolutePath();
String file1Name = file1.getName();
boolean b = file1.createNewFile();
long length = file1.length();
二、字节流
1.InputStream
File file=new File("D:\\abc\\hello.txt");
InputStream inputStream=new FileInputStream(file);
int i=0;
while ((i=inputStream.read())!=-1){System.out.println((char) i);
}
inputStream.close();
File file=new File("D:\\abc\\hello.txt");
InputStream inputStream=new FileInputStream(file);
byte[] buf=new byte[4];
int l=0;
while ((l=inputStream.read(buf))!=-1){System.out.println(l);for (int i = 0; i< buf.length; i++) {System.out.println((char) buf[i]);}
}inputStream.close();
3.OutputStream
File file=new File("D:\\abc\\hello.txt");
FileInputStream inputStream=new FileInputStream(file);
byte[] buf=new byte[4];
int l=0;
System.out.println("原文件的内容:");
while ((l=inputStream.read(buf))!=-1){for (int i = 0; i< buf.length; i++) {System.out.println((char) buf[i]);}
}
FileOutputStream outputStream=new FileOutputStream("D:\\abc\\hello1.txt");
outputStream.write(buf);