Java IO knowledge points
1:file:文件的创建和删除;
File file=new File("D:\\word.txt");绝对路径 File file=new File("word.txt");相对路径 if(!file.exists()) { file.createNewFile();} 不存在时,创建新的 if(file.exists()) { file.delete();} 存在时,删除操作 file.length();汉字两个字节一个,字母空格数字一个字节一个,换行两个字节。(long) file.isFile()判断是否存在 file.canRead()判断是否可以读 file.canWrite();判断是否被写入 file.getAbsolutePath()获取绝对路径 file.lastModified()最后的修改时间(long)
2:文件输入输出流
文件txt的写入当执行流的时候文件内容会被清空,读取不会清空文件内容
FileInputStream和FileOutputStream类(读取,写入) File file=new File("D:\\word.txt"); FileOutputStream out=new FileOutputStream (file);//写入 byte bite[]="abcdefg牛123*?!#".getBytes(); out.write(bite);//在文件中写入相应信息 out.close(); FileInputStream in=new FileInputStream (file);//读取 byte bite2[]=new byte[1024]; int len=in.read(bite2);//从文件中读取信息。返回字节数,符号数字字母一个字节,汉字两个字节 System.out.println(new String(bite2,1,len-2));//字节数组,初始结尾输出bcdefg牛123*? System.out.println(len);//输出16 in.close();//关闭流
FileReader和FileWriter类(读取,写入)
File file=new File("D:\\word.txt"); FileWriter out=new FileWriter(file);//写入 String a="hellow张三\n"; out.write(a); out.write(a); out.close();//关闭流 FileReader in=new FileReader(file);//读取 char ch[]=new char[1024]; in.read(ch); System.out.println(ch);//hellow张三 //hellow张三 当输出ch[7]=三,ch[8]="";ch[9]=h;换行中间有一个空 in.close();//关闭流
两类的区别在于FileInputStream和FileOutputStream类(读取,写入)处理字节流,很适合处理音频等文件不适合处理汉字文档,因为汉字和英文字母不同两个字节,而FileReader和FileWriter类(读取,写入)适合处理字符文本内容,不会乱码。
3:带缓存的输入,输出流
BufferedInputStream和BufferedOutputStream BufferedInputStream(InputStream in)//32个字节缓存流 BufferedInputStream(InputStream in,int size)//size个字节缓存流 BufferedOutputStream(OutputStream out) BufferedOutputStream(OutputStream out,int size); BufferedWriter和BufferedReader
String a[]= {"张三你好","李四你好","李四你好"}; File file=new File("D:\\word.txt"); FileWriter out=new FileWriter(file);//写入 BufferedWriter bufw=new BufferedWriter (out); for(int i=0;i<3;i ) { bufw.write(a[i]);//写入 bufw.newLine();//换行,写入一个行分隔符 } bufw.close(); out.close();//关闭流 FileReader in=new FileReader(file);//读取 BufferedReader bufr=new BufferedReader(in); String s=null; while((s= bufr.readLine())!=null) {System.out.println(s);} //一定要赋值,readLine()是一种动态方法返回字符串。不可 while(bufr.readLine()=null)System.out.println(bufr.readLine());} //这样就默认调用了两次函数。。。 bufr.close(); in.close();//关闭流 /* * 输出: * 张三你好 * 李四你好 * 李四你好 */
4:数据输入,输出流
DateInputStream和DateOutputStream DateInputStream(InputStream in)使用指定基础的InputStream创建 DateOutputStream(OutputStream out) DateOutputStream三种写入字符串方法 writeBytes(String s) java 字符是双字节的,将字符的低字节内容录入。 writeChars(String s) 每个字符的两个字节内容 writeUTF(String s) 将字符按照utf编码录入 DateInputStream读取字符串 readUTF();
The above is the detailed content of Java IO knowledge points. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Guide to Square Root in Java. Here we discuss how Square Root works in Java with example and its code implementation respectively.

Guide to Perfect Number in Java. Here we discuss the Definition, How to check Perfect number in Java?, examples with code implementation.

Guide to Random Number Generator in Java. Here we discuss Functions in Java with examples and two different Generators with ther examples.

Guide to the Armstrong Number in Java. Here we discuss an introduction to Armstrong's number in java along with some of the code.

Guide to Weka in Java. Here we discuss the Introduction, how to use weka java, the type of platform, and advantages with examples.

Guide to Smith Number in Java. Here we discuss the Definition, How to check smith number in Java? example with code implementation.

In this article, we have kept the most asked Java Spring Interview Questions with their detailed answers. So that you can crack the interview.

Java 8 introduces the Stream API, providing a powerful and expressive way to process data collections. However, a common question when using Stream is: How to break or return from a forEach operation? Traditional loops allow for early interruption or return, but Stream's forEach method does not directly support this method. This article will explain the reasons and explore alternative methods for implementing premature termination in Stream processing systems. Further reading: Java Stream API improvements Understand Stream forEach The forEach method is a terminal operation that performs one operation on each element in the Stream. Its design intention is
