字节流读写非文本文件(图片.视频等) @Test public void test5(){ File srcFile = new File("FLAMING MOUNTAIN.JPG"); File destFile = new File("FLAMING MOUNTAIN1.JPG"); FileInputStream fis = null; FileOutputStream fos = null; try { //字节输入输出流 fis = new FileIn…
BufferedOutputStream,FileInputStream,FileOutputStream,BufferedInputStream,BufferedReader,BufferedWriter,FileInputStream,FileReader,FileWriter,InputStreamReader每一种流都介绍到了,详细一目了然的详细 下面是字节流常见操作的四种方式: import java.io.BufferedOutputStream; import java.io.Fi…
写入数据 @Test public void test10() throws IOException { DataOutputStream dos = new DataOutputStream(new FileOutputStream("data.txt")); dos.writeUTF("猪八戒"); dos.writeInt(26); dos.writeBoolean(true); dos.close(); } 读取数据 @Test public void te…
FileReader 字符输入流 @Test public void test2(){ File file = new File("hello.txt"); FileReader fr = null; try { fr = new FileReader(file); char[] cbuf = new char[5]; //返回读取的长度 int len; while ((len = fr.read(cbuf)) != -1){ String str = new String(cbuf…
本章介绍FileInputStream 和 FileOutputStream 转载请注明出处:http://www.cnblogs.com/skywang12345/p/io_07.html FileInputStream 和 FileOutputStream 介绍 FileInputStream 是文件输入流,它继承于InputStream.通常,我们使用FileInputStream从某个文件中获得输入字节.FileOutputStream 是文件输出流,它继承于OutputStream.通…
public class IOStreamKnow { /*********************************文件读写方式:字节流************************************/ /** * 方式一:基本方式,文件读写方式的基础 */ public void name() { try { //创建输入流,输入流用来读取文件字节信息 //参数表示读取的文件对象 FileInputStream input = new FileInputStream(new F…
乱码问题大概就是编码格式不一样,搜了很多都是这么说的,修改编码解决乱码问题链接: https://blog.csdn.net/weixin_42496466/article/details/81189774 注意:记得要修改读的txt文件的编码方式,原理可能理解有偏差,但我一定要修改才能读到正确的内容. 参考链接:https://blog.csdn.net/Blinstar/article/details/76268722 循环写小错误: 我的代码: FileInputStream fis=ne…
大家好!!新人求罩! import java.io.File; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.IOException; public class work6 { /** * @param args * @throws IOException */ public static void main(String[] args) throws IOExceptio…
RandomAccessFile实例化时,需要设置读写模式 示例:复制文件 @Test public void test16() throws IOException { RandomAccessFile rafR = new RandomAccessFile("FLAMING MOUNTAIN.JPG", "r"); RandomAccessFile rafW = new RandomAccessFile("FLAMING MOUNTAIN2.JPG&q…
1.IO流(IO流概述及其分类) 1.概念 IO流用来处理设备之间的数据传输 Java对数据的操作是通过流的方式 Java用于操作流的类都在IO包中 流按流向分为两种:输入流,输出流. 流按操作类型分为两种: 字节流 : 字节流可以操作任何数据,因为在计算机中任何数据都是以字节的形式存储的 字符流 : 字符流只能操作纯字符数据,比较方便. 2.IO流常用父类 字节流的抽象父类: InputStream OutputStream 字符流的抽象父类: Reader Writer 3.IO程序书写 使…