JavaSE:16、Java IO

学习 资源1

学习资源 2

1、文件字节流

import java.io.*;import java.util.*;public class Main {public static  void main(String[] args)  {//try-with-resource语法,自动closetry(FileInputStream file = new FileInputStream("E:/text.txt")) {System.out.println("");} catch (IOException e) {throw new RuntimeException(e);}}}

读入

import java.io.*;import java.util.*;public class Main {public static  void main(String[] args)  {//try-with-resource语法,自动closetry(FileInputStream file = new FileInputStream("E:/text.txt")) {int i;while((i=file.read())!=-1) {  //读一个字符,没有返回-1System.out.print((char) i);}} catch (IOException e) {throw new RuntimeException(e);}}}
import java.io.*;import java.util.*;public class Main {public static  void main(String[] args)  {//try-with-resource语法,自动closetry(FileInputStream file = new FileInputStream("E:/text.txt")) {byte[] b = new byte[3];while(file.read(b)!=-1)   //一次读入三个字符{System.out.println(new String(b));}//   Hel//   lo// Wor//    ldr} catch (IOException e) {throw new RuntimeException(e);}}}
import java.io.*;import java.util.*;public class Main {public static  void main(String[] args)  {//try-with-resource语法,自动closetry(FileInputStream file = new FileInputStream("E:/text.txt")) {byte[] b = new byte[file.available()];//返回有多少个字节可读file.read(b);System.out.println(new String(b));//Hello World} catch (IOException e) {throw new RuntimeException(e);}}}

输出

import java.io.*;import java.util.*;public class Main {public static  void main(String[] args)  {//覆盖文件原有内容try(FileOutputStream file = new FileOutputStream("E:/text.txt")) {file.write("hello".getBytes());//字符串转为byte数组才行file.write("world".getBytes(),2,3);//hellorld;file.flush(); //刷新} catch (IOException e) {throw new RuntimeException(e);}}}
import java.io.*;import java.util.*;public class Main {public static  void main(String[] args)  {//在文件后面接着写try(FileOutputStream file = new FileOutputStream("E:/text.txt",true)) {file.write("hello".getBytes());//字符串转为byte数组才行file.write("world".getBytes(),2,3);//hellorldhellorldfile.flush(); //刷新} catch (IOException e) {throw new RuntimeException(e);}}}

文件拷贝

import java.io.*;import java.util.*;public class Main {public static  void main(String[] args)  {try(FileOutputStream outputStream = new FileOutputStream("E:/textout.txt");FileInputStream inputStream = new FileInputStream("E:/text.txt")) {byte[] bytes = new byte[10];    //使用长度为10的byte[]做传输媒介int tmp;   //存储本地读取字节数while ((tmp = inputStream.read(bytes)) != -1) {   //直到读取完成为止outputStream.write(bytes, 0, tmp);}} catch (IOException e) {throw new RuntimeException(e);}}}

2、文件字符流

读纯文本文件,一次读一个字符,中英文均可

读入

import java.io.*;import java.util.*;public class Main {public static  void main(String[] args)  {try(FileReader reader = new FileReader(new File("src/in.txt"))) {System.out.println(reader.read());//你} catch (IOException e) {throw new RuntimeException(e);}}}

输出

import java.io.*;import java.util.*;public class Main {public static  void main(String[] args)  {try(FileWriter  writer = new FileWriter("src/our.txt");) {writer.write("Hello World");//不用转为byte数组writer.flush();} catch (IOException e) {throw new RuntimeException(e);}}}

拷贝文件

import java.io.*;import java.util.*;public class Main {public static  void main(String[] args)  {try(FileWriter  writer = new FileWriter("src/out.txt");FileReader reader = new FileReader("src/in.txt")) {char[]  c=new char[100];int len;while((len=reader.read(c))!=-1)writer.write(c,0,len);} catch (IOException e) {throw new RuntimeException(e);}}}

3、文件对象

import java.io.*;import java.util.*;public class Main {public static  void main(String[] args)  {File file=new File("src/in.txt");System.out.println(file.exists());//trueSystem.out.println(file.isFile());//trueSystem.out.println(file.getAbsolutePath());//该文件的绝对路径}}
import java.io.*;import java.util.*;public class Main {public static  void main(String[] args) throws IOException {File file=new File("filetest");file.mkdir();//创建文件夹file=new File("filetest/test.txt");file.createNewFile();//创建文件}}

文件拷贝+进度条

import java.io.*;import java.util.*;public class Main {public static  void main(String[] args) throws IOException {File file=new File("src/in.txt");try(FileInputStream in=new FileInputStream(file);FileOutputStream out=new FileOutputStream("src/out.txt")) {byte[]  by=new byte[20];long len=file.length();long sum=0;  int chalen;while((chalen=in.read(by))!=-1){sum+=chalen;out.write(by,0,chalen);System.out.println("已拷贝:"+(double)sum/len*100+"%");
//                已拷贝:12.658227848101266%
//                    已拷贝:25.31645569620253%
//                    已拷贝:37.9746835443038%
//                    已拷贝:50.63291139240506%
//                    已拷贝:63.29113924050633%
//                    已拷贝:75.9493670886076%
//                    已拷贝:88.60759493670885%
//                    已拷贝:100.0%}}catch (Exception e){e.getStackTrace();}}}

4、缓冲流

缓冲字节流

import java.io.*;import java.util.*;public class Main {public static  void main(String[] args)  {try(BufferedInputStream in=new BufferedInputStream(new FileInputStream("src/in.txt"));){in.mark(0);System.out.print((char)in.read());System.out.print((char)in.read());System.out.println((char)in.read());//helin.reset(); //从mark处开始读System.out.print((char)in.read());System.out.print((char)in.read());System.out.print((char)in.read());//hel}catch(Exception e){e.getStackTrace();}}}
import java.io.*;import java.util.*;public class Main {public static  void main(String[] args)  {try(BufferedOutputStream out=new BufferedOutputStream(new FileOutputStream("src/out.txt"));){out.write("Hello World!".getBytes());;}catch(Exception e){e.getStackTrace();}}}

缓冲字符流

import java.io.*;import java.util.*;public class Main {public static  void main(String[] args)  {try(BufferedReader in=new BufferedReader(new FileReader("src/in.txt"));){System.out.println(in.readLine());//helloworld}catch(Exception e){e.getStackTrace();}}}
import java.io.*;import java.util.*;public class Main {public static  void main(String[] args)  {try(BufferedWriter out=new BufferedWriter(new FileWriter("src/out.txt"));){out.write("hello");out.newLine();out.write("world");
//               hello 
//               world}catch(Exception e){e.getStackTrace();}}}

5、转换流

import java.io.*;import java.util.*;public class Main {public static  void main(String[] args)  {try(OutputStreamWriter out=new OutputStreamWriter(new FileOutputStream("src/out.txt"));){out.write("你好");}catch(Exception e){e.getStackTrace();}}}
import java.io.*;import java.util.*;public class Main {public static  void main(String[] args)  {try(InputStreamReader in=new InputStreamReader(new FileInputStream("src/in.txt"));){System.out.println((char)in.read());//你System.out.println((char)in.read());//好}catch(Exception e){e.getStackTrace();}}}

6、打印流

import java.io.*;import java.util.*;public class Main {public static void main(String[] args) {try (PrintStream out = new PrintStream(new FileOutputStream("src/out.txt"));) {out.println("Hello World!");} catch (Exception e) {e.printStackTrace();}}}

7、数据流和对象流

数据流(使用情况少,了解)

import java.io.*;import java.util.*;public class Main {public static void main(String[] args) {try (DataInputStream in = new DataInputStream(new FileInputStream("src/in.txt"));) {System.out.println((char)in.readByte());//2} catch (Exception e) {e.printStackTrace();}}}

对象流

import java.io.*;import java.util.*;public class Main {public static void main(String[] args) {try (ObjectOutputStream out = new ObjectOutputStream(new FileOutputStream("src/out.txt"));ObjectInputStream in = new ObjectInputStream(new FileInputStream("src/out.txt"))) {List<String> list=new ArrayList<>(Arrays.asList("A", "B", "C", "D", "E"));out.writeObject(list);//�� sr java.util.ArrayListx����a� I sizexp   w   t At Bt Ct Dt ExObject o=in.readObject();System.out.println(o);//  [A, B, C, D, E]} catch (Exception e) {e.printStackTrace();}}}

对于自已定义的类需要实现序列化才能写读

import java.io.*;import java.util.*;public class Main {public static void main(String[] args) {try (ObjectOutputStream out = new ObjectOutputStream(new FileOutputStream("src/out.txt"));ObjectInputStream in = new ObjectInputStream(new FileInputStream("src/out.txt"))) {Person person = new Person();person.name= "zhangsan";out.writeObject(person);Person person1 = (Person) in.readObject();System.out.println(person1.name);//zhangsan} catch (Exception e) {e.printStackTrace();}}static class Person implements Serializable {String name;
//transient  忽略该变量}}

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

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

相关文章

Z-BlogPHP显示错误Undefined array key 0 (set_error_handler)的解决办法

今天打开博客的时候&#xff0c;意外发现页面&#xff0c;打开均显示错误&#xff1a;Undefined array key 0 (set_error_handler)。 博客程序采用的是Z-BlogPHP。百度了一圈没有找到解决办法&#xff0c;在官方论坛里也没找到解决办法。 于是开始自己排查原因。我服务器采用…

【vue3|第29期】Vue3中的插槽:实现灵活的组件内容分发

日期&#xff1a;2024年10月24日 作者&#xff1a;Commas 签名&#xff1a;(ง •_•)ง 积跬步以致千里,积小流以成江海…… 注释&#xff1a;如果您觉在这里插入代码片得有所帮助&#xff0c;帮忙点个赞&#xff0c;也可以关注我&#xff0c;我们一起成长&#xff1b;如果有不…

【分立元件】低阻值电阻器的趋势(Face down type)

低阻值电阻器不仅可正确显示电阻器的阻值,还是小型、大功率产品或散热性优良的产品所必不可少的。 为了应对大功率或提高散热性,一般使用较大贴片尺寸的产品或长边电极型产品。 但是,如果贴片尺寸变大,就需要一定的贴装空间,还会减弱温度循环试验强度。 长边电极型…

利用Docker搭建一套Mycat2+MySQL8一主一从、读写分离的最简单集群(保姆教程)

文章目录 1、Mycat介绍1.1、mycat简介1.2、mycat重要概念1.3、Mycat1.x与Mycat2功能对比1.2、主从复制原理 2、前提准备3、集群规划4、安装和配置mysql主从复制4.1、master节点安装mysql8容器4.2、slave节点安装mysql8容器4.2、配置主从复制4.3、测试主从复制配置 5、安装mycat…

使用pandas进行数据分析

文章目录 1.pandas的特点2.Series2.1新建Seriws2.2使用标签来选择数据2.3 通过指定位置选择数据2.4 使用布尔值选择数据2.5 其他操作2.5.1 修改数据2.5.2 统计操作2.5.3 缺失数据处理 3.DataFrame3.1 新建 DataFrame3.2 选择数据3.2.1 使用标签选择数据3.2.2 使用 iloc 选择数据…

yolov11的onnx模型C++ 调用

yolov11的onnx模型C调用 效果图一、python调用二、onnx模型导出三、python的onnx调用调用检测模型调用分割模型 四、C的onnx模型调用五 、视频流的检测后续 效果图 一、python调用 本文只记录生成的yolov11模型如何调用&#xff0c;其他可参考各种yolov11博客 模型下载&#x…

万年历制作

#include<stdio.h> int main() { int year0, month0, day0, y0, m0&#xff1b; scanf_s("%d %d", &year,&month); //判断闰年 for(y1900;y<year;y) { if ((y % 4 0 && y % 100 ! 0) || y % 400 0) …

redis内存打满了怎么办?

1、设置maxmemory的大小 我们需要给 Redis设置maxmemory的大小&#xff0c;如果不设置的话&#xff0c;它会受限于系统的物理内存和系统对内存的管理机制。 2、设置内存的淘汰策略 内存的淘汰策略分为 8 种&#xff0c;从淘汰范围来说分为从所有的key中淘汰和从设置过期时间…

C语言[求x的y次方]

C语言——求x的y次方 这段 C 代码的目的是从用户输入获取两个整数 x 和 y &#xff0c;然后计算 x 的 y 次幂&#xff08;不过这里有个小错误&#xff0c;实际计算的是 x 的 (y - 1) 次幂&#xff0c;后面会详细说&#xff09;&#xff0c;最后输出结果。 代码如下: #include…

Apache Paimon Catalog

Paimon Catalog可以持久化元数据&#xff0c;当前支持两种类型的metastore&#xff1a; 文件系统&#xff08;默认&#xff09;&#xff1a;将元数据和表文件存储在文件系统中。hive&#xff1a;在 hive metastore中存储元数据。用户可以直接从 Hive 访问表。 2.2.1 文件系统…

centeros7 编译ffmpeg

使用yum安装的路似乎已经堵住了&#xff0c;请求的镜像全是404或503 1.打开终端并使用yum安装EPEL存储库(Extra Packages for Enterprise Linux)&#xff1a;sudo yum install epel-release2.接下来&#xff0c;使用以下命令来安装FFmpeg&#xff1a;sudo yum install ffmpeg …

remote: HTTP Basic: Access denied

解决方法 输入&#xff1a; git config --system --unset credential.helper 再次进行 Git 操作&#xff0c;输入正确的用户名&#xff0c;密码即可。

static、 静态导入、成员变量的初始化、单例模式、final 常量(Content)、嵌套类、局部类、抽象类、接口、Lambda、方法引用

static static 常用来修饰类的成员&#xff1a;成员变量、方法、嵌套类 成员变量 被static修饰&#xff1a;类变量、成员变量、静态字段 在程序中只占用一段固定的内存&#xff08;存储在方法区&#xff09;&#xff0c;所有对象共享可以通过实例、类访问 (一般用类名访问和修…

OpenHarmony(1)开发环境搭建

一&#xff1a;开源项目 OpenHarmony是由开放原子开源基金会&#xff08;OpenAtom Foundation&#xff09;孵化及运营的开源项目&#xff0c;目标是面向全场景、全连接、全智能时代&#xff0c;基于开源的方式&#xff0c;搭建一个智能终端设备操作系统的框架和平台&#xff0…

使用SQL在PostGIS中创建各种空间数据

#1024程序员节&#xff5c;征文# 一、目录 1. 概述 2. 几何&#xff08;Geometry&#xff09;类型 创建点 创建线 创建面 3. 地理&#xff08;Geography&#xff09;类型 地理点&#xff08;GEOGRAPHY POINT&#xff09; 地理线串&#xff08;GEOGRAPHY LINESTRING&#xff…

Redis 单机、主从、哨兵和集群架构详解和搭建

目录 前言 单机部署 检查安装 gcc 环境 下载安装 Redis 启动 Redis 关闭 Redis 配置Redis 主从部署 整体架构图 主从复制配置 重启 Redis 验证 主从复制的作⽤ 主从复制缺点 哨兵部署&#xff08;Sentinel&#xff09; 整体架构图 哨兵模式配置 启动哨兵 验证…

MySQL-32.索引-操作语法

一.语法 二.代码实现 指定某个字段为主键&#xff0c;其实就是建立一个主键索引。而指定某个字段唯一&#xff0c;就是建立一个唯一索引。 -- 索引 -- 创建&#xff1a;为tb_emp表的name字段建立一个索引 create index idx_emp_name on tb_emp(name);-- 查询&#xff1a;查…

【智能大数据分析 | 实验四】Spark实验:Spark Streaming

【作者主页】Francek Chen 【专栏介绍】 ⌈ ⌈ ⌈智能大数据分析 ⌋ ⌋ ⌋ 智能大数据分析是指利用先进的技术和算法对大规模数据进行深入分析和挖掘&#xff0c;以提取有价值的信息和洞察。它结合了大数据技术、人工智能&#xff08;AI&#xff09;、机器学习&#xff08;ML&a…

基于java的山区环境监督管理系统(源码+定制+开发)环境数据可视化、环境数据监测、 环境保护管理 、污染防治监测系统 大数据分析

博主介绍&#xff1a; ✌我是阿龙&#xff0c;一名专注于Java技术领域的程序员&#xff0c;全网拥有10W粉丝。作为CSDN特邀作者、博客专家、新星计划导师&#xff0c;我在计算机毕业设计开发方面积累了丰富的经验。同时&#xff0c;我也是掘金、华为云、阿里云、InfoQ等平台…

《Python游戏编程入门》注-第3章3

《Python游戏编程入门》的“3.2.4 Mad Lib”中介绍了一个名为“Mad Lib”游戏的编写方法。 1 游戏玩法 “Mad Lib”游戏由玩家根据提示输入一些信息&#xff0c;例如男人姓名、女人姓名、喜欢的食物以及太空船的名字等。游戏根据玩家输入的信息编写出一个故事&#xff0c;如图…