java的文件字节输出和输入流

字符集:
 

public class test1 {public static void main(String[] args) throws UnsupportedEncodingException {//1:编码:String data="b你a2";byte[] bytes = data.getBytes();//默认使用(UTF-8)进行编码,字符数字占一个字节(ASCII值)// 汉字占三个字节,都以1开头(110xxxxx 10xxxxxx 10xxxxxx)System.out.println(Arrays.toString(bytes));//[98, -28, -67, -96, 97, 50]//按照指定字符集进行编码byte[] bytes1 = data.getBytes("GBK");//使用GBK编码集进行编码,字符,数字占一个字节,汉字占两个字节//汉字的第一个字节的第一位必须是1//1xxxxxxx xxxxxxxxSystem.out.println(Arrays.toString(bytes1));//[98, -60, -29, 97, 50]//2:解码String s1=new String(bytes);//按照平台默认编码集进行解码System.out.println(s1);//b你a2String s2=new String(bytes1);System.out.println(s2);//b��a2,用来解码GBK字符集会乱码String s3=new String(bytes1,"GBK");System.out.println(s3);//b你a2}
}

IO流:

字节输入流:以内存为基准,以字节的形式读入到内存中的流
字节输出流:以内存为基准,把内存的数据以字节写到磁盘文件或者网络中的流
字符输入流:以内存为基准,以字符的形式读入到内存中的流

字符输出流:以内存为基准,把内存的数据以字符写到磁盘文件或者网络中的流

文件字节输入流:FileInputStream(从文件中读字节到内存)

public FileInputStream(String name) throws FileNotFoundException

Creates a FileInputStream by opening a connection to an actual file, the file named by the path name name in the file system. A new FileDescriptor object is created to represent this file connection.

public FileInputStream(File file) throws FileNotFoundException

Creates a FileInputStream by opening a connection to an actual file, the file named by the File object file in the file system. A new FileDescriptor object is created to represent this file connection.

public int read() throws IOException

Reads a byte of data from this input stream. This method blocks if no input is yet available.

每次读取一个字节返回,成功返回1

public int read(byte[] b) throws IOException

Reads up to b.length bytes of data from this input stream into an array of bytes. This method blocks until some input is available.

每次用一个字节数组去读取数据,返回字节数组读取了多少个字节,如果没有可读数据返回-1;

每次读取一个字节 

public class test2 {public static void main(String[] args) throws IOException {File f1=new File("day17-file-app\\src\\hhh.txt");System.out.println(f1.exists());//1:创建文件输入流管道,与源文件接通InputStream in=new FileInputStream("day17-file-app\\src\\hhh.txt");//InputStream接口类//2:开始读取数据int c=in.read();System.out.println(c);//97System.out.println((char)c);//aint c1=in.read();System.out.println((char)c1);//b-->移动读取下一个字节int c2=in.read();int c3=in.read();System.out.println((char)c3);//-1--->如果没有数据返回-1//3:使用循环读InputStream in2=new FileInputStream("day17-file-app\\src\\hhh2.txt");int b;while((b=in2.read())!=-1){System.out.println((char)b);}//缺点:读取中文会乱码,(UTF-8)中文要三个字节,这是一个字节读的//流使用完毕后,要释放关闭in.close();in2.close();}
}

每次读取多个字节:
 

public class test3 {public static void main(String[] args) throws IOException {InputStream in=new FileInputStream("day17-file-app\\src\\hhh2.txt");byte[]bytes=new byte[6];int len = in.read(bytes);//返回读取到的字节数,并存到bytes中,没有数据就返回-1System.out.println(len);//5System.out.println(Arrays.toString(bytes));//[97, 98, 99, 100, 101,0]//解码:String s=new String(bytes,0,len);//读取多少,就倒出多少(置0)
,len是字节数System.out.println(s);//abcdeSystem.out.println(in.read());//-1System.out.println("-----");InputStream in2=new FileInputStream("day17-file-app\\src\\hhh.txt");//使用循环读byte[]bytes2=new byte[3];int len3;while((len3=in2.read(bytes2))!=-1){System.out.println(len3);String rs=new String(bytes2,0,len3);//读了就置0System.out.println(rs);}/* 3abc3eda3fas*/in.close();in2.close();}
}

注意:读取多个字节,读取汉字也可能会乱码

解决方法

方式一:定义一个字节数组与被读取的文件大小一样大,然后使用该字节数组,一次读完该文件的全部字节
public class test4 {public static void main(String[] args) throws IOException {InputStream in=new FileInputStream("day17-file-app\\src\\hhh.txt");File f=new File("day17-file-app\\src\\hhh.txt");long length = f.length();byte[]b=new byte[(int)length];int len = in.read(b);//读取String s=new String(b,0,len);//读完要置0System.out.println(s);//abce你好呀dafasin.close();//关闭}
}
方式二:使用readAllBytes()方法

 

public class test5 {public static void main(String[] args) throws IOException {InputStream in = new FileInputStream("day17-file-app\\src\\hhh.txt");byte[] b = in.readAllBytes();String s = new String(b);//全部读完了,不置0也可以System.out.println(s);//abce你好呀dafasin.close();}
}

文件字节输出流:FileOutputStream(写内容到文件)

public FileOutputStream(String name) throws FileNotFoundException

Creates a file output stream to write to the file with the specified name. A new FileDescriptor object is created to represent this file connection.

public FileOutputStream(File file) throws FileNotFoundException

Creates a file output stream to write to the file represented by the specified File object. A new FileDescriptor object is created to represent this file connection. 

public FileOutputStream(String name, boolean append) throws FileNotFoundException

可追加内容 

public FileOutputStream(File file, boolean append) throws FileNotFoundException

 可追加内容 

public void write(int b) throws IOException

写一个字节出去 

public void write(byte[] b) throws IOException

Writes b.length bytes from the specified byte array to this file output stream.

写一个字节数组出去 

public void write(byte[] b, int off, int len) throws IOException

Writes len bytes from the specified byte array starting at offset off to this file output stream.

写一个字节数组的一部分出去 

 

public class test6 {public static void main(String[] args) throws IOException {//覆盖管道OutputStream out=new FileOutputStream("day17-file-app\\src\\hhh.txt");//2:写一个字节数据out.write(97);out.write('c');out.write('你');//不报错,但是输出会乱码,汉字要三个字节//验证InputStream in=new FileInputStream("day17-file-app\\src\\hhh.txt");byte[] bytes = in.readAllBytes();System.out.println(new String(bytes));//ac//写一个字节数组进去byte[]bytes1="你好呀aaa111".getBytes();out.write(bytes1);bytes = in.readAllBytes();System.out.println(new String(bytes));//你好呀aaa111//写字节数组的一部分out.write(bytes1,0,9);//三个汉字是9个字节bytes = in.readAllBytes();System.out.println(new String(bytes));//你好呀out.close();//追加管道OutputStream out1=new FileOutputStream("day17-file-app\\src\\hhh.txt",true);out1.write(bytes1);out1.write(bytes1);bytes = in.readAllBytes();System.out.println(new String(bytes));//你好呀aaa111你好呀aaa111out1.write("\r\n".getBytes());//换行out1.write(bytes1);bytes = in.readAllBytes();System.out.println(new String(bytes));/*你好呀aaa111你好呀aaa111你好呀aaa111*/}
}

文件复制:

public class test7 {public static void main(String[] args) throws IOException {InputStream in=new FileInputStream("day17-file-app\\src\\hhh.txt");OutputStream out=new FileOutputStream("day17-file-app\\src\\Copyhhh1.txt");byte[]b=new byte[64];int len;while((len=in.read(b))!=-1){out.write(b);}out.close();in.close();}
}

注意:任何文件的底层都是字节,字节流做复制,是一字不漏的转移完全部字节再解码,只要复制后的文件格式一样就没问题

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/818593.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

【七 (1)指标体系建设-构建高效的故障管理指标体系】

目录 文章导航一、故障概述1、故障:2、故障管理: 二、指标体系概述1、指标2、指标体系 三、指标体系构建难点1、管理视角2、业务视角3、技术视角 四、指标体系构建原则1、与战略目标对齐2、综合和平衡3、数据可获得性4、可操作性5、具体和可衡量6、参与和…

lua学习笔记20(lua中一些自带库的学习)

print("*****************************lua中一些自带库的学习*******************************") print("*************时间***************") --系统时间 print(os.time()) --自己传入参数得到时间 print(os.time({year2011,month4,day5})) --os.data(&qu…

00 【哈工大_操作系统】Bochs 汇编级调试方法及指令

本文将介绍一下哈工大李治军老师《操作系统》课程在完成Lab时所使用到的 Bochs 调试工具的使用方法。这是一款汇编级调试工具,打开调试模式非常简单,只需在终端下输入如下指令: 1、bochs 调试基本指令大全 功能指令举例在某物理地址设置断点…

Xxl-job执行器自动注册不上的问题

今天新建的项目要部署xxl-job,之前部署过好多次,最近没怎么部署,生疏了。部署完之后,服务一直没有注册到执行器管理里面,找了半天也没找到原因,看数据库里的xxl_job_registry表也是一直有数据进来。 后来看…

小白也能看懂的BEV感知(一)

1. 引言 随着人工智能技术的不断发展,自动驾驶越来越多地出现在我们的视野中,智能化和电动化已经成为汽车行业的主旋律。无论是从研究的角度还是从工程的角度来看,它都像是一个巨大的宝藏,等待着我们去探索。本文将介绍这一技术的…

从51到ARM裸机开发实验(009)LPC2138 中断实验

一、场景设计 中断的概念在《从51到ARM裸机开发实验(007) AT89C51 中断实验》中已经介绍过,LPC2138的Keil工程创建在《从51到ARM裸机开发实验(005)LPC2138 GPIO实验》中已经介绍过。本次使用LPC2138来实现一个这样的场景:四个LED依次亮灭,时间…

测试人必看,小程序常见问题

小程序是一种轻盈的存在,用户无需为了使用它而下载和安装。它依附于微信这个强大的平台,只需轻轻一扫或一搜,它便跃然屏上,随时服务。小程序为我们带来更多前所未有的惊喜和便利,以下分享关于小程序相关的热门问题。 …

Python关闭所有打开的Word文档并保存

先给出一个打开指定目录下的所有Word文档,并添加新内容,方便后面做关闭测试 import os import win32com.clientdirectory "D:/0test" # 要处理的目录路径 content_to_add "test text" # 要添加的内容# 创建 Word 应用程序对象 …

链表基础3——单链表的逆置

链表的定义 #include <stdio.h> #include <stdlib.h> typedef struct Node { int data; struct Node* next; } Node; Node* createNode(int data) { Node* newNode (Node*)malloc(sizeof(Node)); if (!newNode) { return NULL; } newNode->data …

逆向IDA中Dword,数据提取

我们可以看见数据是这样的&#xff0c;第一个是1cc 但是我们shifte就是 这个因为他的数据太大了&#xff0c;导致高位跑后面去了 这个时候&#xff0c;我们右键——convert——dword 这样就可以提取到争取的数据了 比如第一个数据 0x1cc a0xcc b0x1 print(hex((b<<8…

HarmonyOS开发实例:【事件的订阅和发布】

介绍 本示例主要展示了公共事件相关的功能&#xff0c;实现了一个检测用户部分行为的应用。具体而言实现了如下几点功能&#xff1a; 1.通过订阅系统公共事件&#xff0c;实现对用户操作行为&#xff08;亮灭屏、锁屏和解锁屏幕、断联网&#xff09;的监测&#xff1b; 2.通…

ChatGPT新手指南:轻松写出专业论文

ChatGPT无限次数:点击直达 ChatGPT新手指南&#xff1a;轻松写出专业论文 在当今信息爆炸的时代&#xff0c;撰写一篇专业论文可能对许多人来说是一项繁重的任务。然而&#xff0c;有了最新的自然语言处理技术&#xff0c;如ChatGPT&#xff0c;写出优质的论文不再那么困难。C…

vmware安装ubuntu-18.04系统

一、软件下载 百度网盘&#xff1a; 链接&#xff1a;https://pan.baidu.com/s/1fK2kygRdSux1Sr1sOKOtJQ 提取码&#xff1a;twsb 二、安装ubuntu系统 1、把ubuntu-18.04的压缩包下载下来&#xff0c;并且解压 2、打开vmware软件&#xff0c;点击文件-打开 3、选择我们刚刚解…

6. Django 深入模板

6. 深入模板 6.1 Django模板引擎 Django内置的模板引擎包含模板上下文(亦可称为模板变量), 标签和过滤器, 各个功能说明如下: ● 模板上下文是以变量的形式写入模板文件里面, 变量值由视图函数或视图类传递所得. ● 标签是对模板上下文进行控制输出, 比如模板上下文的判断和循…

项目7-音乐播放器1+BCrypt加密

1.创建项目 1.1 引入依赖 1.2 yml相关配置 application.yml spring:profiles:active: prod mybatis:mapper-locations: classpath:mapper/**Mapper.xmlconfiguration:map-underscore-to-camel-case: true #配置驼峰⾃动转换log-impl: org.apache.ibatis.logging.stdout.StdO…

利他行为为什么没有被淘汰

利他行为在大多数情况下都是不利于个体生存的&#xff0c;个体很容易被淘汰&#xff0c;导致利他行为越来越少&#xff0c;但是事实上利他行为却持续而广泛地存在。这是因为生物既存在以个体为单位的进化&#xff0c;也存在以种群为单位的进化&#xff0c;利他行为能够使得种群…

openGauss学习笔记-261 openGauss性能调优-使用Plan Hint进行调优-将部分Error降级为Warning的Hint

文章目录 openGauss学习笔记-261 openGauss性能调优-使用Plan Hint进行调优-将部分Error降级为Warning的Hint261.1 功能描述261.2 语法格式261.3 示例261.3.1 忽略非空约束261.3.2 忽略唯一约束261.3.3 忽略分区表无法匹配到合法分区261.3.4 更新/插入值向目标列类型转换失败 o…

【算法】数组元素循环右移k位,并要求只用一个元素大小的附加存储,元素移动或交换次数为O(n)

两种写法思路&#xff1a; 思路一&#xff1a;三次倒置 前言&#xff1a;C/C函数 reverse 是 左闭右开区间的&#xff0c;作用是将指定范围数组元素全部倒置&#xff0c;数组从 0 开始&#xff0c;这里主要讲解思路&#xff0c;就直接用 函数 reverse 简化过程 这个方法 实现 …

vue3第十八节(diff算法)

引言&#xff1a; 上一节说了key的用途&#xff0c;而这个key属性&#xff0c;在vue的vnode 中至关重要&#xff0c;直接影响了虚拟DOM的更新机制&#xff1b; 什么场景中会用到diff算法 如&#xff1a;修改响应式属性需要重新渲染页面&#xff0c;会重新执行render渲染函数返…

为了执行SQL语句,MySQL的架构是怎样设计的

1. 把MySQL当个黑盒子一样执行SQL语句 上一讲我们已经说到&#xff0c;我们的系统采用数据库连接池的方式去并发访问数据库&#xff0c;然后数据库自己其实也会维护一个连 接池&#xff0c;其中管理了各种系统跟这台数据库服务器建立的所有连接 我们先看下图回顾一下 当我们的…