Java基础知识总结(66)

**

  • FileOutputStream练习 */ public class FileOutputStreamDemo { public static void main(String[] args) {

    String path = "D:\\IoDemo\\test2.txt";
    //如果文件不存在,则自动创建
    //append:是指是否在原有内容后追加,默认为FALSE
    try(OutputStream os = new FileOutputStream(path)){char c = '赞';int a = c;os.write(a);
    }catch (FileNotFoundException e) {e.printStackTrace();
    }catch (IOException e){e.printStackTrace();
    }

    } }

/**

  • FileOutputStream练习 */ public class FileOutputStreamDemo2 {

    public static void main(String[] args) { String path = "D:\IoDemo\test2.txt"; //如果文件不存在,则自动创建 //append参数为true:在原有内容后追加 try(OutputStream os = new FileOutputStream(path,true)){ String s = "众里寻他千百度,蓦然回首,那人却在,灯火阑珊处。 "; os.write(s.getBytes()); }catch (IOException e){ e.printStackTrace(); } } }

    同时使用输入流和输出流来复制文件

/**

  • 同时使用FileInputStream和FileOutputStream完成文件的复制操作 */ public class CopyUtilDemo { public static void main(String[] args) { File src = new File("D:\SSH.zip"); File dest = new File("D:\IoDemo\ssh.zip"); copy(src,dest); } public static void copy(File src, File dest){ long start = System.currentTimeMillis(); try(InputStream inputStream = new FileInputStream(src); OutputStream outputStream = new FileOutputStream(dest)) { byte[] bytes = new byte[16384]; int k =0; while((k=inputStream.read(bytes))!=-1){ outputStream.write(bytes); } } catch (IOException e) { e.printStackTrace(); } long end = System.currentTimeMillis(); System.out.println("复制完成!"); System.out.println("共用时"+(end-start)/1000+"秒"); } }

/**

  • 解压文件练习 */ public class ZipOutputStreamDemo { public static void main(String[] args) { try{ InputStream inputStream = new FileInputStream("D:\IoDemo\test.zip"); ZipInputStream zipInput = new ZipInputStream(inputStream, Charset.forName("gbk")); ZipEntry zipEntry = null; while ((zipEntry = zipInput.getNextEntry())!=null){ String name = zipEntry.getName(); System.out.print(name); int k = 0; OutputStream outputStream = new FileOutputStream("D:\IoDemo\"+name); BufferedOutputStream bufferedOutputStream = new BufferedOutputStream(outputStream); while((k = zipInput.read())!=-1){ bufferedOutputStream.write(k); } bufferedOutputStream.close(); outputStream.close(); } } catch (FileNotFoundException e) { e.printStackTrace(); } catch (IOException e) { throw new RuntimeException(e); } } }

/**

  • 压缩文件练习 */ public class ZipInputStreamDemo { public static void main(String[] args) throws IOException { File file = new File("D:\IoDemo\Typora 1.2.3.exe"); FileInputStream fileInputStream = new FileInputStream(file); OutputStream outputStream = new FileOutputStream("D:\IoDemo\typora.zip"); ZipOutputStream zipOutputStream = new ZipOutputStream(outputStream); zipOutputStream.putNextEntry(new ZipEntry(file.getName())); int k; while ((k = fileInputStream.read())!=-1){ zipOutputStream.write(k); } zipOutputStream.close(); outputStream.close(); fileInputStream.close(); } } 2、今天没学会什么

学习心得

今天主要学习了I/O流,重点为字节流的输入输出,练习了常用的方法。通过练习更好的掌握主要的知识点,在实践中积累使用经验。

课后练习:

  1. 遍历D盘,将D盘中所有的路径名和文件名写入文本文件中

/**

  • 遍历D盘,将D盘中所有的路径名和文件名写入文本文件中 */ public class IoDemo2 { public static void main(String[] args) { String path = "D:\"; File file = new File(path); ArrayList<String> filenames = new ArrayList<>(); filenames = getPathFileName(file,filenames); generateTxt(filenames); }

    /**

    • 获取D盘下所有的路径名和文件名

    • @param baseFile */ private static ArrayList<String> getPathFileName(File baseFile,ArrayList<String> fileName) { //File对象的索引子文件和路径 File[] files = baseFile.listFiles(); //在files对象不为Null时遍历 ArrayList<String> filenames = fileName; if (files != null && files.length > 0) { //遍历路径和文件列对象 for (File file : files) { //判断是否是文件 if (file.isFile()) { //调用方法写入 filenames.add(file.getAbsolutePath()); } //判断是否是路径 if (file.isDirectory()) { //如果是路径,需要继续递归调用方法并传递文件对象参数继续遍历输出文件和路径 getPathFileName(file,filenames); }

      }

      } return filenames; }

    private static void generateTxt(ArrayList<String> files){ String path = "D:\IoDemo\filename.txt"; //如果文件不存在,则自动创建 //append参数为true:在原有内容后追加 //资源自动释放 try(OutputStream os = new FileOutputStream(path,true)){ //遍历ArrayList for (int i = 0; i < files.size(); i++) { //将数据写入 os.write(files.get(i).getBytes()); os.write("\r\n".getBytes()); } }catch (IOException e){ e.printStackTrace(); } } }

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

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

相关文章

Python代码实战——深入解析缓存问题:穿透、击穿、雪崩

作为Python开发者处理缓存相关问题,可以通过具体的场景和代码示例来更好地理解和解决缓存穿透、缓存击穿和缓存雪崩。 缓存穿透 场景:用户频繁请求数据库中不存在的数据,导致每次请求都绕过缓存直接查询数据库,增加数据库的压力。 解决方案: 设置空值缓存:当查询数据不…

代码优化实践之税率计算问题

开篇 今天的问题来自于《编程珠玑》第三章【数据决定程序结构】&#xff0c;这里提出了几条代码优化相关的原则&#xff0c;受益不浅。下面是提到的几条原则&#xff1a; 使用数组重新编写重复代码。冗长的相似代码往往可以使用最简单的数据结构——数组来更好的表述&#xff1…

C++入门之类和对象(中)

C入门之类和对象(中) 文章目录 C入门之类和对象(中)1. 类的6个默认对象2. 构造函数2.1 概念2.2 特性2.3 补丁 3. 析构函数3.1 概念3.2 特性3.3 总结 4. 拷贝构造函数4.1 概念4.2 特性4.3 总结 1. 类的6个默认对象 如果一个类中什么都没有&#xff0c;那么这个类就是一个空类。…

什么是代理IP?如何正确使用代理IP?

代理IP&#xff08;Proxy IP&#xff09;是一种网络技术&#xff0c;它允许用户通过一个中介服务器&#xff08;即代理服务器&#xff09;来访问互联网。具体来说&#xff0c;代理IP隐藏了用户的真实IP地址&#xff0c;使用第三方的IP地址进行网络访问。当用户发起网络请求时&a…

CAD小软件diy-读柴油机壳体装配图

读取一个柴油机壳体dxf图纸&#xff0c;一般这种装配体轮廓曲线都是用直线和圆弧拟合的&#xff0c;全部都是显示的白色实现&#xff0c;发现有线段间隙&#xff0c;拖动线段补上间隙。 这个测试放在蓝奏云上面 https://wwf.lanzout.com/ip1Xx1vvhbkh

tcp bbr pacing 的对与错

前面提到 pacing 替代 burst 是大势所趋&#xff0c;核心原因就是摩尔定律逐渐失效&#xff0c;主机带宽追平交换带宽&#xff0c;交换机不再能轻易吸收掉主机突发&#xff0c;且随着视频类流量激增&#xff0c;又不能以大 buffer 做带宽后备。因此&#xff0c;主机必须 pacing…

A-1:树状数组

A-1:树状数组 1.介绍Q1:树状数组解决什么问题&#xff1f;Q2:树状数组的使用1.前置知识&#xff1a;lowbit(x)2.单点修改3.求[1,n]的和4.区间查询5.hh Q3:树状数组是否优化了Q4:上图上例子解释上面说的东西(Important) 2.习题练习 1.介绍 树状数组是一个比较难以理解的高级数据…

什么存算分离?

存算分离&#xff08;Storage-Compute Separation 或 Storage-Compute Decoupling&#xff09;是一种数据架构设计理念&#xff0c;旨在将数据存储&#xff08;Storage&#xff09;和数据处理/计算&#xff08;Compute&#xff09;功能分离开来。这种设计允许存储资源和计算资源…

python笔记之高级特性

目录 一、is 与 二、深浅拷贝 三、生成器&#xff08;generator&#xff09; 1、列表推导式 2、列表生成器 3、函数生成器 四、迭代器 可迭代对象 五、闭包&#xff08;closure&#xff09; 六、装饰器 一、is 与 比较运算符。是用来比较两个值的大小的。&#xf…

C语言---单链表(二)

文章目录 前言1.准备工作2,打印链表、创建新的节点、销毁链表2.1.打印链表2.2.创建节点2.3.销毁链表 3.尾插、头插、尾删、头删3.1.尾插3.2.头插3.3.尾删3.4.头删 4.在特殊位置之前、之后插入、删除以及查找节点4.1.查找节点4.2.在指定位置之前插入4.3.在指定位置之后插入数组4…

赋值运算符

介绍 赋值运算符就是将某个运算后的值&#xff0c; 赋给指定的变量。 赋值运算符的分类 基本赋值运算符 例如&#xff1a; int a 10; 复合赋值运算符 &#xff0c; - &#xff0c; * &#xff0c; / &#xff0c; % 等 a b; [等价 a a b; ] a - b; [等价 a a - b; ] …

亚信安全入选中国数据安全市场图谱

近日&#xff0c;全球领先的IT市场研究和咨询公司IDC发布了《IDC Market Glance&#xff1a;中国数据安全市场图谱&#xff0c;2024》报告&#xff08;以下简称“报告”&#xff09;&#xff0c;报告展示了中国数据安全市场的构成和格局&#xff0c;遴选出不同细分市场领域的主…

C语言中的结构体:从定义到传递

前言 结构体是C语言中一种重要的数据类型&#xff0c;它允许我们将不同类型的数据组合成一个整体&#xff0c;并以自定义的方式进行操作。通过结构体&#xff0c;我们可以更加灵活地管理和处理复杂的数据结构&#xff0c;从而提高程序的可读性和可维护性。本篇博客将从结构体的…

jetcache fastjson 泛型复杂对象JSON序列 ,反序列化

Jetcache fastjson 泛型复杂对象JSON序列 ,反序列化 默认的FastJson2 序列化存在问题增强FastJson 支持Encode 编码器Decode 解码器 默认的FastJson2 序列化存在问题 默认的序列化不能转换List 中的泛型数据类型, 从缓存拿取的list集合对象数据全部都转换成了JSONObject 增强F…

nginx--Nginx转发真实的IP

Nginx转发真实的IP 前言给nginx.conf 设置proxy_set_headerjava 程序里获取 前言 在使用nginx的时候可能会遇到判断是不是本机在做操作&#xff0c;这样的话web端我们是可以通过ip和端口进行远程连接的这样的话我们就需要从后端获取到真实ip来判断是不是指定的机器了&#xff…

Linux 序列化、反序列化、实现网络版计算器

目录 一、序列化与反序列化 1、序列化&#xff08;Serialization&#xff09; 2、反序列化&#xff08;Deserialization&#xff09; 3、Linux环境中的应用实例 二、实现网络版计算器 Sock.hpp TcpServer.hpp Jsoncpp库 Protocol.hpp 类 Request 类 Response 辅助函…

稳压二极管仿真实验

稳压二极管仿真实验 1、稳压管稳压实验 用Multisim搭建如下的仿真电路图&#xff0c;选用5.1V的稳压管&#xff0c;12V的直流电源&#xff0c;开启仿真后&#xff0c;12V电压将稳压管击穿&#xff0c;稳压管将两端的电压稳压到5.07V&#xff0c;该电压与限流电阻R1的阻值有关…

js操作dom元素

当使用JavaScript操作DOM时&#xff0c;可以通过各种方法来实现对元素的获取、修改、创建、删除等操作。以下是一些详细的代码示例&#xff1a; 1. 获取元素 javascript复制代码 // 通过ID获取元素 var elementById document.getElementById(myElementId); // 通过类名获取元…

跟着Carl大佬学leetcode之977 有序数组的平方

来点强调&#xff0c;刷题是按照代码随想录的顺序进行的&#xff0c;链接如下https://www.programmercarl.com/本系列是记录一些刷题心得和学习过程&#xff0c;就看到题目自己先上手试试&#xff0c;然后看程序员Carl大佬的解释&#xff0c;自己再敲一遍修修补补&#xff0c;练…

如何安装cuda和cudnn

https://www.bilibili.com/video/BV1sY411c7JS/?spm_id_from333.999.0.0 https://www.bilibili.com/video/BV1q5411d7GD/?spm_id_from333.999.0.0 以上两个链接参考&#xff1a;水果数据集(Fruit-Dataset )水果分类识别训练代码(支持googlenet, resnet, inception_v3, mobil…