java读取文件
1 java8读取文本文件
2
3
4 public static void java8ReadFileLines(String fileName) throws IOException {
5 List lineList = Files.readAllLines(Paths.get(fileName), StandardCharsets.UTF_8);
6
7 for(String line:lineList){
8 System.out.println(line);
9 }
10 }
11
12
13
14 一行一行地读取文件
15
16
17 public static void readFileByLines(String fileName) {
18 File file = new File(fileName);
19 BufferedReader reader = null;
20 try {
21 reader = new BufferedReader(new FileReader(file));
22 String line = null;
23 while((line=reader.readLine())!=null ) {
24 System.out.println(line);
25 }
26 }catch (IOException e) {
27
28 }finally {
29 if(reader!=null) {
30 try{
31 reader.close();
32 }catch (IOException e) {
33 ;
34 }
35 }
36 }
37 }
38
39
40
41 一次读取多个字符
42
43
44 public static void readFileByMultiChars(String fileName) {
45 File file = new File(fileName);
46 try{
47 InputStreamReader inputStreamReader = new InputStreamReader(new FileInputStream(file));
48
49 char[] tempChars = new char[30];
50
51 int readCount = 0;
52 while((readCount=inputStreamReader.read(tempChars))!=-1) {
53 if(readCount==tempChars.length) {
54 System.out.println(tempChars);
55 }else{
56 System.out.println(Arrays.copyOf(tempChars, readCount));
57 }
58 }
59
60
61 inputStreamReader.close();
62 }catch(Exception e) {
63 e.printStackTrace();
64 }
65 }
66
67
68
69 一个字符一个字符地读取
70
71
72 public static void readFileByChars(String fileName) {
73 File file = new File(fileName);
74 try{
75 InputStreamReader inputStreamReader = new InputStreamReader(new FileInputStream(file));
76
77 int tempChar;
78
79 while((tempChar=inputStreamReader.read())!=-1) {
80 System.out.println((char)tempChar);
81 }
82
83
84 inputStreamReader.close();
85 }catch(Exception e) {
86 e.printStackTrace();
87 }
88 }
89
90
91
92 java8读取字节 超级简单
93
94
95 public static byte[] java8ReadBytes(String fileName) throws IOException {
96 return Files.readAllBytes(Paths.get(fileName));
97 }
98
99
一个字节一个字节地读取
public static void readFileByOneByte(String fileName) {
File file = new File(fileName);
InputStream inputStream = null;
try{
inputStream = new FileInputStream(file);
int tempByte;
while( (tempByte=inputStream.read())!=-1) {
System.out.println(tempByte);
}
inputStream.close();
}catch (IOException e) {
System.out.println(e);
}
}
一个字节一个字节读取到ByteBuffer
public static byte[] readFileByOneByteToBuffer(String fileName) {
ByteBuffer byteBuffer = ByteBuffer.allocate(1024 * 1024);
File file = new File(fileName);
InputStream inputStream = null;
try{
inputStream = new FileInputStream(file);
int tempByte;
while( (tempByte=inputStream.read())!=-1) {
byteBuffer.put((byte)tempByte);
}
inputStream.close();
}catch (IOException e) {
System.out.println(e);
}
byteBuffer.flip();
System.out.println("one limit:" + byteBuffer.limit());
byte[] result = new byte[byteBuffer.limit()];
byteBuffer.get(result);
return result;
}
多个字节进行读取
public static void readFileByMultiBytes(String fileName) {
File file = new File(fileName);
InputStream inputStream = null;
try {
byte[] bytes = new byte[50];
int byteRead = 0;
inputStream = new FileInputStream(fileName);
while( (byteRead = inputStream.read(bytes))!=-1 ) {
System.out.println(byteRead);
}
}catch(IOException e) {
System.out.println(e);
}finally {
if(inputStream!=null) {
try{
inputStream.close();
}catch(IOException e){
System.out.println("iput stream close exception" + e);
}
}
}
}
读取多个字节到ByteBuffer
public static byte[] readFileByMultiBytesToBuffer(String fileName) {
ByteBuffer byteBuffer = ByteBuffer.allocate(1024*1024);
InputStream inputStream = null;
try {
byte[] bytes = new byte[50];
int byteRead = 0;
inputStream = new FileInputStream(fileName);
int count = 0;
while( (byteRead = inputStream.read(bytes))!=-1 ) {
byteBuffer.put(bytes, 0, byteRead);
count+=byteRead;
}
System.out.println("readCount:"+count);
}catch(IOException e) {
System.out.println(e);
}finally {
if(inputStream!=null) {
try{
inputStream.close();
}catch(IOException e){
System.out.println("iput stream close exception" + e);
}
}
}
byteBuffer.flip();
System.out.println("multi limit:" + byteBuffer.limit());
byte[] result = new byte[byteBuffer.limit()];
byteBuffer.get(result);
return result;
}
java读取文件的更多相关文章
- [Java]读取文件方法大全(转)
[Java]读取文件方法大全 1.按字节读取文件内容2.按字符读取文件内容3.按行读取文件内容 4.随机读取文件内容 public class ReadFromFile { /** ...
- Java 读取文件的内容
Java 读取文件的内容 1) CLASS_NAME: 换成自己真实的类名 2) /page/test.json: 换成自己真实的page 3) FileUtils: 来自于org.apache.co ...
- Java读取文件-BufferedReader/FileReader/InputStreamReader/FileInputStream的关系和区别
一.Java读取和存储文件数据流 Java读取文件,实际是将文件中的字节流转换成字符流输出到屏幕的过程 这里面涉及到两个类:InputStreamReader和OutputStreamWriter ...
- 使用java读取文件夹中文件的行数
使用java统计某文件夹下所有文件的行数 经理突然交代一个任务:要求统计某个文件夹下所有文件的行数.在网上查了一个多小时没有解决.后来心里不爽就决定自己写一个java类用来统计文件的行数,于是花了两个 ...
- Java读取文件的几种方式
package com.mesopotamia.test; import java.io.BufferedReader; import java.io.ByteArrayInputStream; im ...
- java 读取文件——按照行取出(使用BufferedReader和一次将数据保存到内存两种实现方式)
1.实现目标 读取文件,将文件中的数据一行行的取出. 2.代码实现 1).方式1: 通过BufferedReader的readLine()方法. /** * 功能:Java读取txt文件的内容 步骤: ...
- Java 读取文件到字符串
Java的io操作比较复杂 package cn.outofmemory.util; import java.io.BufferedReader; import java.io.FileInputSt ...
- java读取文件夹下所有文件并替换文件每一行中指定的字符串
import java.io.BufferedReader; import java.io.File; import java.io.FileInputStream; import java.io.I ...
- Java读取文件方法和给文件追加内容
本文转载自:http://www.cnblogs.com/lovebread/archive/2009/11/23/1609122.html 1.按字节读取文件内容2.按字符读取文件内容3.按行读取文 ...
- java读取文件方法总结
由于最近在做一个关于从手机本地读取格式化的txt文件中的内容,并且把内容放在listview中显示.这样问题来了,就是如何能够遍历已经获取到特定的map中就是一个问题,在网上找了一些资料,找到了一个很 ...
随机推荐
- UIProgressView(进度条控件)
UIProgressView *pr=[[UIProgressView alloc]init]; pr.frame=CGRectMake(150.0, 190.0, 130.0, 30.0);//进度 ...
- centos6.5yum方式升级内核
升级内核需要使用elrepo的yum源,在安装yum源之前还需要我们导入elrepo的key,如下:rpm -import https://www.elrepo.org/RPM-GPG-KEY-elr ...
- zepto.js之ajax剖析
1.ajax的baseHeaders ajax插件中的baseHeaders对象的是http请求头部的信息 var mime = settings.accepts[dataType], baseHea ...
- Ecshop商品促销时间精确到小时分钟和秒的设置方法 调用时间
第一步:找到admin/tempate/good_info.htm文件 把<input name="selbtn1" type="button" id=& ...
- 如何在ubuntu中启用SSH服务
如何在ubuntu14.04 中启用SSH服务 开篇科普: SSH 为 Secure Shell 的缩写,由 IETF 的网络工作小组(Network Working Group)所制定:SSH 为 ...
- javascript函数的定义与执行
要理解javascript函数的定义与执行,首先需要知道这几个重要的概念,现在可以先知道稍后再理解! 函数的执行环境(excution context).活动对象(call object).作用域(s ...
- ubuntu使用root用户登录/切换root权限
ubuntu系统默认root用户是不能登录的,密码也是空的. 如果要使用root用户登录,必须先为root用户设置密码 打开终端,输入:sudo passwd root 然后按回车 此时会提示你输入密 ...
- zookeeper原理(转)
ZooKeeper是一个分布式的,开放源码的分布式应用程序协调服务,它包含一个简单的原语集,分布式应用程序可以基于它实现同步服务,配置维护和命名服务等.Zookeeper是hadoop的一个子项目,其 ...
- PHP中逻辑运算符and/or与||/&&的一个坑
我原来以为PHP中的and和&&是一样的, 只是写法上为了可读性和美观, 事实上我错了. 这里面深藏了一个坑! 看以下代码: $bA = true; $bB = false; $b1 ...
- jQuery源码-class操作
写在前面 本文写作基于jQuery 1.9.1版本,源码分析系列目录:http://www.cnblogs.com/chyingp/archive/2013/06/03/jquery-souce-co ...