读取控制台输入
将System.in包装在BufferedReader对象中来创建一个字符流
BufferedReader b = new BufferedReader(new InputStreamReader(System.in));
从BufferedReader对象中 读取字符使用read()方法 int read () throws IOException
读取字符串 String readLine () throws IOException
控制台输出
void write (int byteval)
文件读取数据
第一种方式:InputStream f = new FileInputStream("C:/java/hello");
第二种方式:File f = new File("C:/java/hello");
InputStream in = new FileInputStream(f);
向文件写入数据
第一种方式:OutputStream f = new FileOutputStream("C:/java/hello");
第二种方式:File f = new File("C:/java/hello");
OutputStream out = new FileOutputStream(f);
Java中的目录
File类中方法创建文件夹 mkdir()返回值true(路径不存在) false(路径已存在)
目录=File对象 isDirectory()方法可以确定创建了一个目录,list()方法提取文件及文件夹列表
删除文件 File f f.delete();