Table of Contents
File类常用API的使用:
file类的遍历目录
RomdonAccessFile基本操作
五、字节流

iO流

Jun 26, 2017 am 11:37 AM

文件编码:

①gbk编码:中文占用2个字节,英文占用1个字节

②utf-8编码:中文占用3个字节,英文占用1个字节
Copy after login
③java是双字节编码 utf-16be,中文占用2个字节,英文占用2个字节
Copy after login
④当你的字节序列是某种编码时,若想把该字节序列变成字符串,也必须用这种编码方式,不能直接使用String str = new String(byteStr);否则系统会使用默认的编码,从而出现乱码
Copy after login
⑤文本文件就是字节序列,可以是任意编码的字节序列,如果我们在中文机器上直接创建文本文件,则该文本文件只认识ansi编码
Copy after login
在eclipse项目下创建的项目可以指定项目的编码形式。eclipse默认的“GBK”编码不能识别“utf-8”的文件。若是将eclipse中创建的“utf-8”文件复制到电脑上是可以识别的,但是!在电脑本地上创建的“utf-8”文件,电脑识别不了
Copy after login

File类常用API的使用:

java.io.File类在Java中表示文件或目录。
Copy after login
File类只用于表示文件(目录)的信息(名称、大小等),不能用于文件内容的访问。
Copy after login
创建File对象:File file=new File(String path);
Copy after login
两种创建“日记1.txt”文件的方法
Copy after login
<br>
Copy after login
Copy after login
可以通过 alt+/ 查看构造函数
Copy after login
注意:盘符后跟双斜杠 \\ 或者 /
Copy after login

1. file.seperater();获取系统分隔符
Copy after login
2. file.exists();是否存在.存在返回true,不存在返回false
Copy after login
3. file.mkdir();或者file.mkdirs();创建目录或多级目录。
Copy after login
4. file.isDirectory()或者file.isFile()判断是否是目录或者是否是文件。是返回true,不是为false
Copy after login
5. file.delete();删除文件/文件夹。
Copy after login
6. file.createNewFile();创建新文件。
Copy after login
7. file.getName()获取文件名称。
Copy after login
8. file.getAbsolutePath()获取绝对路径。
Copy after login
9. file.getParent();获取父级绝对路径
Copy after login

file类的遍历目录

File对象 dir
Copy after login
 dir.isDirectory() 判断当前路径是否为目录
Copy after login
dir.list()返回String[],用于列出当前目录下的子目录和文件(不包含子目录下的名称)
Copy after login
如果要遍历子目录下的内容就需要构造成File对象做递归操作
Copy after login
File files = dir.listFiles();//返回的是直接子目录(文件)的抽象
Copy after login

RomdonAccessFile基本操作

Java提供的对文件内容的访问,可以读内容也可以写内容
Copy after login
支持随机访问文件,可以访问文件的任意位置
Copy after login
(1)Java文件模型
Copy after login
在硬盘上是byte bytebyte存储的,是数据的集合
Copy after login
(2)打开文件
Copy after login
有两种模式“rw”读写 和“r”只读
Copy after login
RondomAccessFile raf = new RondomAccessFile(file,”rw”);
Copy after login
文件指针  打开文件时指针在开头pointer = 0;
Copy after login
(3) 写方法
Copy after login
Raf.writer(int)---à只写一个字节(后八位),同时指针指向下一个位置,准备再次写入
Copy after login
(4)读方法
Copy after login
int b = raf.read()--à从指针在的位置读一个字节
Copy after login
(5)文件读写完之后一定要关闭
Copy after login
(6)代码
Copy after login
public static void main(String[] args) throws IOException{
Copy after login
    File demo = new File("demo");//新建一个File对象,如果没有写绝对路径则是默认在项目路径下
Copy after login
    if(!demo.exists())
Copy after login
        demo.mkdir();
Copy after login
    File file = new File(demo,"raf.dat");//在demo下创建文件raf.dat
Copy after login
    if(!file.exists())
Copy after login
        file.createNewFile();//在项目下新建了demo文件夹,其中有raf.dat文件
Copy after login
    <br>
Copy after login
    RandomAccessFile raf = new RandomAccessFile(file,"rw")//创建读内容的对象raf
Copy after login
    //指针的位置,写一个字节指针移一位
Copy after login
    System.out.println(raf.getFilePointer());   //开始时在控制台输出0
Copy after login
raf.write('A');//只写了一个字节(后8位)
Copy after login
System.out.println(raf.getFilePointer());//输出1
Copy after login
int i = 0x7fffffff;//用write方法每次只能写一个字节,若要把i写进去就得写4次
Copy after login

 

<br>
Copy after login
Copy after login
此时输出6
Copy after login
raf.writeInt(i);//直接写一个int
Copy after login
System.out.println(raf.getFilePointer());//输出10
Copy after login
    String s = "中";
Copy after login
    byte[] gbk = s.getBytes("gbk");
Copy after login
    raf.write(gbk);
Copy after login
System.out.println(raf.getFilePointer());//输出12 中文两个字节
Copy after login
 <br>
Copy after login
Copy after login
Copy after login
    //读文件,必须把指针移到头部
Copy after login
    ref.seek(0);
Copy after login
    //一次性读取,把文件中的内容都读到字节数组中
Copy after login
    byte[] buf = new byte[(int)raf.length];
Copy after login
    raf.read(buf);
Copy after login
System.out.println(Array.toString(buf));
Copy after login
 <br>
Copy after login
Copy after login
Copy after login
//用十六进制包装   重新输入
Copy after login
    for(byte b:buf){
Copy after login
        System.out.println(Integer.toHexString(b & 0xff)+"");
Copy after login
}
Copy after login
Copy after login
 <br>
Copy after login
Copy after login
Copy after login
//最后一定要加上close()方法
Copy after login
}
Copy after login
Copy after login

五、字节流

读写文件时以字节为单位
Copy after login
1) 有两个父类:InputStream和OutputStream
Copy after login
   InputStream是抽象类,抽象了应用程序读取数据的方式
Copy after login
   OutputStream抽象了应用程序写出数据的方式
Copy after login
2) EOF = End 或 读到-1就读到结尾
Copy after login
3) 输入流基本方法(in是输入流对象)
Copy after login
   int b = in.read();//读取一个字节无符号填充到int低八位,-1是EOF
Copy after login
   in.read(byte[] buf)  读取数据填充到字节数组buf
Copy after login
   int.read(byte[] buf,int start,int size)  读取数据到字节数组buf,从buf的start位置开始存放size长度的数据
Copy after login
4) 输出流基本方法(进行写的操作)
Copy after login
    out.write(int b) 写出一个byte到流,b的低八位
Copy after login
    out.write(byte[] buf) 将buf字节数组都写入到流
Copy after login
    out.write(byte[] buf,int start,int size) 字节数组buf从start位置开始写size长度的字节到流
Copy after login

The above is the detailed content of iO流. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

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 ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Top 4 JavaScript Frameworks in 2025: React, Angular, Vue, Svelte Top 4 JavaScript Frameworks in 2025: React, Angular, Vue, Svelte Mar 07, 2025 pm 06:09 PM

This article analyzes the top four JavaScript frameworks (React, Angular, Vue, Svelte) in 2025, comparing their performance, scalability, and future prospects. While all remain dominant due to strong communities and ecosystems, their relative popul

Spring Boot SnakeYAML 2.0 CVE-2022-1471 Issue Fixed Spring Boot SnakeYAML 2.0 CVE-2022-1471 Issue Fixed Mar 07, 2025 pm 05:52 PM

This article addresses the CVE-2022-1471 vulnerability in SnakeYAML, a critical flaw allowing remote code execution. It details how upgrading Spring Boot applications to SnakeYAML 1.33 or later mitigates this risk, emphasizing that dependency updat

How do I implement multi-level caching in Java applications using libraries like Caffeine or Guava Cache? How do I implement multi-level caching in Java applications using libraries like Caffeine or Guava Cache? Mar 17, 2025 pm 05:44 PM

The article discusses implementing multi-level caching in Java using Caffeine and Guava Cache to enhance application performance. It covers setup, integration, and performance benefits, along with configuration and eviction policy management best pra

Node.js 20: Key Performance Boosts and New Features Node.js 20: Key Performance Boosts and New Features Mar 07, 2025 pm 06:12 PM

Node.js 20 significantly enhances performance via V8 engine improvements, notably faster garbage collection and I/O. New features include better WebAssembly support and refined debugging tools, boosting developer productivity and application speed.

How does Java's classloading mechanism work, including different classloaders and their delegation models? How does Java's classloading mechanism work, including different classloaders and their delegation models? Mar 17, 2025 pm 05:35 PM

Java's classloading involves loading, linking, and initializing classes using a hierarchical system with Bootstrap, Extension, and Application classloaders. The parent delegation model ensures core classes are loaded first, affecting custom class loa

Iceberg: The Future of Data Lake Tables Iceberg: The Future of Data Lake Tables Mar 07, 2025 pm 06:31 PM

Iceberg, an open table format for large analytical datasets, improves data lake performance and scalability. It addresses limitations of Parquet/ORC through internal metadata management, enabling efficient schema evolution, time travel, concurrent w

How to Share Data Between Steps in Cucumber How to Share Data Between Steps in Cucumber Mar 07, 2025 pm 05:55 PM

This article explores methods for sharing data between Cucumber steps, comparing scenario context, global variables, argument passing, and data structures. It emphasizes best practices for maintainability, including concise context use, descriptive

How can I implement functional programming techniques in Java? How can I implement functional programming techniques in Java? Mar 11, 2025 pm 05:51 PM

This article explores integrating functional programming into Java using lambda expressions, Streams API, method references, and Optional. It highlights benefits like improved code readability and maintainability through conciseness and immutability

See all articles