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读取文件的更多相关文章

  1. [Java]读取文件方法大全(转)

    [Java]读取文件方法大全   1.按字节读取文件内容2.按字符读取文件内容3.按行读取文件内容 4.随机读取文件内容 public class ReadFromFile {     /**     ...

  2. Java 读取文件的内容

    Java 读取文件的内容 1) CLASS_NAME: 换成自己真实的类名 2) /page/test.json: 换成自己真实的page 3) FileUtils: 来自于org.apache.co ...

  3. Java读取文件-BufferedReader/FileReader/InputStreamReader/FileInputStream的关系和区别

    一.Java读取和存储文件数据流 Java读取文件,实际是将文件中的字节流转换成字符流输出到屏幕的过程   这里面涉及到两个类:InputStreamReader和OutputStreamWriter ...

  4. 使用java读取文件夹中文件的行数

    使用java统计某文件夹下所有文件的行数 经理突然交代一个任务:要求统计某个文件夹下所有文件的行数.在网上查了一个多小时没有解决.后来心里不爽就决定自己写一个java类用来统计文件的行数,于是花了两个 ...

  5. Java读取文件的几种方式

    package com.mesopotamia.test; import java.io.BufferedReader; import java.io.ByteArrayInputStream; im ...

  6. java 读取文件——按照行取出(使用BufferedReader和一次将数据保存到内存两种实现方式)

    1.实现目标 读取文件,将文件中的数据一行行的取出. 2.代码实现 1).方式1: 通过BufferedReader的readLine()方法. /** * 功能:Java读取txt文件的内容 步骤: ...

  7. Java 读取文件到字符串

    Java的io操作比较复杂 package cn.outofmemory.util; import java.io.BufferedReader; import java.io.FileInputSt ...

  8. java读取文件夹下所有文件并替换文件每一行中指定的字符串

    import java.io.BufferedReader; import java.io.File; import java.io.FileInputStream; import java.io.I ...

  9. Java读取文件方法和给文件追加内容

    本文转载自:http://www.cnblogs.com/lovebread/archive/2009/11/23/1609122.html 1.按字节读取文件内容2.按字符读取文件内容3.按行读取文 ...

  10. java读取文件方法总结

    由于最近在做一个关于从手机本地读取格式化的txt文件中的内容,并且把内容放在listview中显示.这样问题来了,就是如何能够遍历已经获取到特定的map中就是一个问题,在网上找了一些资料,找到了一个很 ...

随机推荐

  1. windows7-SQLyog 安装图解

    双击: 双击已下载的SQLyog Enterprise 安装文件,点击“next”,选择“I accept...”,勾选安装组件,选择安装目录,等待安装完成. 协议:选择我接受 选择操作   选择路径 ...

  2. Windows7-32bit系统安装MySQL-5.5.39-win32.msi服务图解

    下载mysql-5.5.39-win32.msi安装文件,双击运行,出现如下界面. mysql安装向导启动,按“Next”继续 在 I accept the terms in the License ...

  3. MySQL外键使用需要注意的几点

    最近刚刚接触MySQL,在建立表示遇到了一些问题,总是提示错误代码:150 can't create table ...,所以就到网上搜索了一下发现还有以下几点需要注意的: [CONSTRAINT [ ...

  4. CodeForces 710CMagic Odd Square(经典-奇数个奇数&偶数个偶数)

    题目链接:http://codeforces.com/problemset/problem/710/C 题目大意:输入一个奇数n,则生成n*n矩阵,要求矩阵的行.列还有斜着,所有元素之和为奇数. 解题 ...

  5. Python + OpenCV2 系列:2 - 图片操作

    这些相当于我的学习笔记,所以并没有很强的结构性和很全的介绍,请见谅. 1 读取.写入图像 下面是一个简短的载入图像.打印尺寸.转换格式及保存图像为.png的例子: # -*- coding: utf- ...

  6. Unity Sprite Atlas Compression

    http://forum.unity3d.com/threads/2d-sprite-packer-and-pvrtc.218633/ http://docs.unity3d.com/Manual/S ...

  7. HBase命令(三) -- 增删改查

    新增 //语法:put <table>,<rowkey>,<family:column>,<value>,<timestamp> //新增或 ...

  8. Quartz.Net 基于XML配置启动

    1.App.config <configSections> <section name="quartz" type="System.Configurat ...

  9. C# volatile关键字

    ; public int GetAge() { return Age; } 如上例子,调用GetAge()得到的是“主”内存区域的Age数值.用volatile修饰后的变量不允许有不同于“主”内存区域 ...

  10. 遍历JObject

    JObject jo = JObject.Parse(jsonStr); IEnumerable<JProperty> properties = jo.Properties(); fore ...