博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
java IO 流的学习(我们到底能走多远系列1)
阅读量:6250 次
发布时间:2019-06-22

本文共 968 字,大约阅读时间需要 3 分钟。

我们到底能走多远系列(1)

“我们到底能走多远系列”:开始我的java之路。我要挖出这个地道,离开这里。

IO入门代码阅读:

字节流:

private void writeTxt(String path, String value) throws IOException{        OutputStream fos = new FileOutputStream(path);//构造方法1        fos.write(value.getBytes());        fos.close();    }    private void readTxt(String path) throws IOException{        File file = new File(path);        InputStream fis = new FileInputStream(path);//构造方法2        byte b[] = new byte[(int)file.length()] ;        fis.read(b);        System.out.print(new String(b));        fis.close();    }

字符流:

private void writeTxt(String path, String value) throws IOException{        Writer writer = new FileWriter(path);        writer.write(value);        writer.close();    }        private void readTxt(String path) throws IOException{        Reader reader = new FileReader(path);        char c[] = new char[1024] ;        int len = reader.read(c);        System.out.print(new String(c, 0, len));        reader.close();    }

转载地址:http://dqusa.baihongyu.com/

你可能感兴趣的文章
基于 OAuth 安全协议的 Java 应用编程1
查看>>
使用Golang利用ectd实现一个分布式锁
查看>>
javaweb学习总结五(内省、beanUtils工具包)
查看>>
An easy to use android color picker library
查看>>
iOS10全新推送功能的实现
查看>>
C#中容易被忽视的细节整理
查看>>
php内核分析(二)-ZTS和zend_try
查看>>
获取form对象
查看>>
不确定人数的抽奖方法
查看>>
win7 windows server 2008R2下 https SSL证书安装的搭配(搭配https ssl本地测试环境)
查看>>
sh脚本——#!/bin/bash
查看>>
MYSQL-innodb性能优化几个点
查看>>
什么是Mixin模式:带实现的协议
查看>>
Oracle SID爆破工具SidGuess
查看>>
escape、encodeURI以及encodeURIComponent
查看>>
UIView加入手势 然后UITableView 加入进这个View 导致UITableView 的单元格点击事件无效...
查看>>
Vertex and FragmentShader顶点与片段着色器
查看>>
.Net中的AOP系列之《将AOP作为架构工具》
查看>>
谈谈站桩
查看>>
使用 VisualVM 进行性能分析及调优
查看>>