Java IO API记录

文件路径:

public static final String FILEPATH= File.separator+"Users"+ File.separator+"xuminzhe"+File.separator+"Documents"+File.separator+"io";

 

1.创建文件


 

public static void main(String[] args) {File file=new File(Constant.FILEPATH+File.separator+"io.text");try {boolean newFile = file.createNewFile();} catch (IOException e) {e.printStackTrace();}}

 

2.查找指定目录下文件


 

public static void main(String[] args) {File file=new File(Constant.FILEPATH);File[] str = file.listFiles();for (int i = 0; i < str.length; i++) {System.out.println(str[i]);}}

 

3.文件流-写入


 

String filename=Constant.FILEPATH+ File.separator+"HELLO.text";File file=new File(filename);OutputStream outputStream=new FileOutputStream(file,true);byte[] bytes = "你好".getBytes();for (int i = 0; i < bytes.length; i++) {outputStream.write(bytes[i]);}outputStream.close();

 

4.文件流-读取


 

public static void main(String[] args) throws IOException {String filename=Constant.FILEPATH+ File.separator+"HELLO.text";File file=new File(filename);InputStream inputStream=new FileInputStream(file);/*** 单字节读取*/{byte[] bytes = new byte[1024];int read1;int count =0;while((read1 = inputStream.read())!=-1){bytes[count++]=(byte) read1;}System.out.println(new String(bytes));}/*** 多字节读取*/{byte[] bytes=new byte[(int) file.length()];int read;while((read=inputStream.read(bytes))!=-1){System.out.println(new String (bytes));}}}

 

5.字符流-写入


 

String filename=Constant.FILEPATH+ File.separator+"HELLO.text";File file=new File(filename);Writer writer=new FileWriter(file,true);String str="\r\nhello";writer.write(str);writer.close();

 

6.字符流-读取


 

public static void main(String[] args) throws IOException {String filename=Constant.FILEPATH+ File.separator+"HELLO.text";File file=new File(filename);Reader read=new FileReader(file);char[] ch=new char[100];int temp=0;int count=0;while((temp=read.read())!=(-1)){ch[count++]=(char)temp;}read.close();System.out.println("内容为"+new String(ch,0,count));}

 

7.转换流-写入  将输出的字符流转化为字节流


 

public static void main(String[] args) throws IOException {String filename=Constant.FILEPATH+ File.separator+"HELLO.text";File file=new File(filename);Writer writer=new java.io.OutputStreamWriter(new FileOutputStream(file,true));writer.write("kobe");writer.close();}

 

8.转换流-读取 将输入的字节流转换为字符流


 

public static void main(String[] args) throws IOException {String filename=Constant.FILEPATH+ File.separator+"HELLO.text";File file=new File(filename);Reader read = new InputStreamReader(new FileInputStream(file));char[] b=new char[100];int len=read.read(b);System.out.println(new String(b,0,len));read.close();}

 

9.对象流


 

static String filename=Constant.FILEPATH+ File.separator+"HELLO.text";static File file=new File(filename);public static void main(String[] args) throws Exception {serializable(file);deserializable(file);}/*** 反序列化* @param file* @throws IOException* @throws ClassNotFoundException*/private static void deserializable(File file) throws IOException, ClassNotFoundException {ObjectInputStream stream=new ObjectInputStream(new FileInputStream(file));Person o = (Person) stream.readObject();System.out.println(o.toString());}/*** 序列化对象* @param file* @throws IOException*/private static void serializable(File file) throws IOException {ObjectOutputStream outputStream=new ObjectOutputStream(new FileOutputStream(file,true));outputStream.writeObject(new Person("xmz",13));outputStream.close();}

 

10.缓冲字符流-读取


 

public static void main(String[] args) throws IOException {String filename=Constant.FILEPATH+ File.separator+"HELLO.text";File file=new File(filename);BufferedReader bufferedReader=new BufferedReader(new FileReader(file));String line;while((line=bufferedReader.readLine())!=null){//读取一个文本行
            System.out.println(line);}bufferedReader.close();}

 

11.缓冲字符流-写入


 

public static void main(String[] args) throws IOException {String filename=Constant.FILEPATH+ File.separator+"HELLO.text";File file=new File(filename);FileWriter fileWriter=new FileWriter(file);/*** 为了提高写入的效率,使用了字符流的缓冲区。* 创建了一个字符写入流的缓冲区对象,并和指定要被缓冲的流对象相关联。*/BufferedWriter bufferedWriter=new BufferedWriter(fileWriter);bufferedWriter.write("jordan乔丹");bufferedWriter.newLine();//换行bufferedWriter.write("kobe蜗壳");bufferedWriter.write("wade韦德");bufferedWriter.flush();bufferedWriter.close();}

12 管道流-可用于线程通信


 

static class Send implements Runnable{private PipedOutputStream out=null;public Send() {out=new PipedOutputStream();}public PipedOutputStream getOut(){return this.out;}public void run(){String message="hello,xmz";try{out.write(message.getBytes());}catch (Exception e) {e.printStackTrace();}try{out.close();}catch (Exception e) {e.printStackTrace();}}}/*** 接受消息类* */static class Recive implements Runnable{private PipedInputStream input=null;public Recive(){this.input=new PipedInputStream();}public PipedInputStream getInput(){return this.input;}public void run(){byte[] b=new byte[1000];int len=0;try{len=this.input.read(b);}catch (Exception e) {e.printStackTrace();}try{input.close();}catch (Exception e) {e.printStackTrace();}System.out.println("接受的内容为 "+(new String(b,0,len)));}}public static void main(String[] args) throws IOException {Send send=new Send();Recive recive=new Recive();try{//管道连接
        send.getOut().connect(recive.getInput());}catch (Exception e) {e.printStackTrace();}new Thread(send).start();new Thread(recive).start();}

 

转载于:https://www.cnblogs.com/xmzJava/p/8987053.html

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

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

相关文章

Flask项目--预防csrf攻击原理

1.CSRF机制原理 2.csrf成功攻击示意图 3.csrf防御

数据管理技术的发展过程

人工管理阶段&#xff08;20世纪50年代中之前&#xff09;文件系统阶段&#xff08;20世纪50年代末--60年代中&#xff09;数据库系统阶段&#xff08;20世纪60年代末--现在&#xff09;

一次失败的项目经理招聘经验

成功的原因有许多种&#xff0c;而失败的原因往往就那么几种。人们更愿意去讨论自己是如何成功的&#xff0c;确不太情愿开诚布公的去剖析自己是如何失败的。而时刻去反思自己失败的案例&#xff0c;我们会进步的更快&#xff01; 和大家分享一个2010年发生在我身边的真实案例&…

NG客制项目下的I18n国际化标准方案

方案选择 国际化i18n ​ 这个方案是最成熟的&#xff0c;同时也是官方的方案&#xff0c;但是这样一个标准化的方案同时意味着灵活度不够。当需要划分feature module&#xff0c;需要客制化组件的时候&#xff0c;这个方案的实施的成本就会远远超过预期&#xff0c;因此在项目中…

Flsak项目--图片验证码

0. 图片验证码的使用流程 2.后端接口编写 verify_code.py中编写接口代码&#xff1a; # coding:utf-8from . import api from ihome.utils.captcha.captcha import captcha from ihome import redis_store, constants, db from flask import current_app, jsonify, make_respo…

数据库与数据库管理系统

数据库是长期存储在计算机内有组织的大量的共享的数据集合。可以供各种用户共享&#xff0c;具有最小冗余度和较高的数据独立性。数据库管理系统在数据库建立、运用和维护时对数据库进行统一控制&#xff0c;以保证数据的完整性、安全性&#xff0c;并在多用户同时使用数据库时…

如何提高团队情商

在公司发展中&#xff0c;总裁&#xff0c;总监&#xff0c;经理&#xff0c;项目经理&#xff0c;他们对团队的建设意义重大&#xff0c;工作很重要&#xff0c;但团队的情商才更重要&#xff0c;笔者公司的一个团队&#xff0c;三十多个人就像一个人&#xff0c;命令所到之处…

ubuntu java classpath 设置_在Ubuntu中正确设置java classpath和java_home

我有错误Exception in thread"main" java.lang.NoClassDefFoundError:当我尝试在Ubuntu上运行编译类时。我使用的是一个非常简单的helloworld示例&#xff0c;互联网上已有数百万的响应表明我的classpath和java_home变量设置错误。但是&#xff0c;我已经将etc/envir…

Polo the Penguin and Matrix

Little penguin Polo has an n  m matrix, consisting of integers. Lets index the matrix rows from 1 to n from top to bottom and lets index the columns from 1 to m from left to right. Lets represent the matrix element on the intersection of row i and column…

趣解 XSS和CSRF的原理

参考文章&#xff1a;趣解 XSS和CSRF的原理 推荐网站&#xff1a;古黑论 感谢作者分享&#xff01;

js异步解决方案 --- 回调函数 vs promise vs generater/yield vs async/await

javascript -- 深度解析异步解决方案 高级语言层出不穷, 然而唯 js 鹤立鸡群, 这要说道js的设计理念, js天生为异步而生, 正如布道者朴灵在 node深入浅出--(有兴趣的可以读一下, 很有意思^_^) , 异步很早就存在于操作系统的底层, 意外的是&#xff0c;在绝大多数高级编程语言中…

什么是TPDU

TPDU,全称Transport Protocol Data Unit&#xff0c;是指传送协议数据单元。代表从一个传输实体发送至另一个传输实体的消息。 我们需要为传输实体之间交换的数据单元起一个更加一般化的名字&#xff0c;TCP的术语是数据段&#xff0c;它很容易混淆&#xff0c;而且在TCP领域之…

sql注入基本原理

1. 参考文献&#xff1a; 趣解SQL注入原理 Sql注入基本原理 2.参考书籍

项目管理杂谈-员工的积极性在哪里?

项目开发过程中&#xff0c;每每有人感叹&#xff0c;曾几何时&#xff0c;队伍如何好带&#xff0c;如何好用&#xff0c;而如今&#xff0c;人心繁杂&#xff0c;队伍不好带了。很多人的想法是“人望高处走”&#xff0c;不停的寻找待遇及其他方面更好的单位。其实&#xff0…

centos7硬盘分区

首先在虚拟机的设置中为系统添加硬盘 使用fdisk -l /dev/sdb 查看未分区的硬盘 fdisk -l /dev/sda 这是已经分区好得 接下来我们就要对sdb进行分区: 首先使用fdisk /dev/sdb 接着输入m可以看到详细命令 进行添加分区 已经建立好4个主分区&#xff0c;在建立时会看到以下 删除…

java上传rar文件_java实现上传zip/rar压缩文件,自动解压

在pom中添加解压jar依赖4.0.0org.springframework.bootspring-boot-starter-parent2.1.2.RELEASEcom.hfuncompress0.0.1-SNAPSHOTuncompress上传压缩文件(rar或者zip格式),解压1.8org.springframework.bootspring-boot-starter-weborg.projectlomboklomboktrueorg.springframew…

从MapReduce的执行来看如何优化MaxCompute(原ODPS) SQL

摘要&#xff1a; SQL基础有这些操作&#xff08;按照执行顺序来排列&#xff09;&#xff1a; from join(left join, right join, inner join, outer join ,semi join) where group by select sum distinct count order by 如果我们能理解mapreduce是怎么实现这些SQL中的基本操…

套接字(socket)基本知识与工作原理

套接字&#xff08;socket&#xff09;基本知识与工作原理 一、Socket相关概念 Socket通常也称作“套接字”&#xff0c;用于描述IP地址和端口&#xff0c;是一个通信链的句柄。&#xff08;其实就是两个程序通信用的。&#xff09; SOCKET用于在两个基于TCP/IP协议的应用程序之…

python 多线程--重点知识

1.全局变量global的用法 2.多线程共享全局变量-args参数 注意args参数类型为元组&#xff0c;逗号不能少&#xff01;

Flask WTForm表单的使用

运行环境&#xff1a; python2.7 flask 0.11 flask-wtf 0.14.2 wtform能够通过一个类定义一些字段&#xff0c;这些字段会在前端生成标签&#xff0c;并且通过设置字段的验证规则&#xff0c;自动判断前端输入数据的格式。 一般用于用户登录&#xff0c;用户注册等信息录入。…