search
HomeJavajavaTutorialJava IO knowledge points
Java IO knowledge pointsOct 19, 2019 pm 04:10 PM
java

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!

Statement
This article is reproduced at:CSDN. If there is any infringement, please contact admin@php.cn delete
带你搞懂Java结构化数据处理开源库SPL带你搞懂Java结构化数据处理开源库SPLMay 24, 2022 pm 01:34 PM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于结构化数据处理开源库SPL的相关问题,下面就一起来看一下java下理想的结构化数据处理类库,希望对大家有帮助。

Java集合框架之PriorityQueue优先级队列Java集合框架之PriorityQueue优先级队列Jun 09, 2022 am 11:47 AM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于PriorityQueue优先级队列的相关知识,Java集合框架中提供了PriorityQueue和PriorityBlockingQueue两种类型的优先级队列,PriorityQueue是线程不安全的,PriorityBlockingQueue是线程安全的,下面一起来看一下,希望对大家有帮助。

完全掌握Java锁(图文解析)完全掌握Java锁(图文解析)Jun 14, 2022 am 11:47 AM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于java锁的相关问题,包括了独占锁、悲观锁、乐观锁、共享锁等等内容,下面一起来看一下,希望对大家有帮助。

一起聊聊Java多线程之线程安全问题一起聊聊Java多线程之线程安全问题Apr 21, 2022 pm 06:17 PM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于多线程的相关问题,包括了线程安装、线程加锁与线程不安全的原因、线程安全的标准类等等内容,希望对大家有帮助。

Java基础归纳之枚举Java基础归纳之枚举May 26, 2022 am 11:50 AM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于枚举的相关问题,包括了枚举的基本操作、集合类对枚举的支持等等内容,下面一起来看一下,希望对大家有帮助。

详细解析Java的this和super关键字详细解析Java的this和super关键字Apr 30, 2022 am 09:00 AM

本篇文章给大家带来了关于Java的相关知识,其中主要介绍了关于关键字中this和super的相关问题,以及他们的一些区别,下面一起来看一下,希望对大家有帮助。

Java数据结构之AVL树详解Java数据结构之AVL树详解Jun 01, 2022 am 11:39 AM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于平衡二叉树(AVL树)的相关知识,AVL树本质上是带了平衡功能的二叉查找树,下面一起来看一下,希望对大家有帮助。

java中封装是什么java中封装是什么May 16, 2019 pm 06:08 PM

封装是一种信息隐藏技术,是指一种将抽象性函式接口的实现细节部分包装、隐藏起来的方法;封装可以被认为是一个保护屏障,防止指定类的代码和数据被外部类定义的代码随机访问。封装可以通过关键字private,protected和public实现。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),