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. 使用ASP.NET Web Api构建基于REST风格的服务实战系列教程【三】——Web Api入门

    系列导航地址http://www.cnblogs.com/fzrain/p/3490137.html 前言 经过前2节的介绍,我们已经把数据访问层搭建好了,从本章开始就是Web Api部分了.在正式开 ...

  2. 第1章 认识jQuery

    一.常用的JavaScript库对比 Prototype.Dojo.YUI.Mootools jQuery是一个轻量级的JavaScript库,大型开发必备——由John Resig于2006年创建. ...

  3. C#--几个数据流Stream;StreamReader;StreamWriter;MemoryStream;BufferStream;

    命名空间:System.IO; Stream: 各种流的基类,不能时行查找操作,Position属性不能修改.读取时不Position不会自动移动, HttpWebRequest webreq = ( ...

  4. ViewController respondsToSelector:]: message sent to deallocated instance

    今天突然遇到这个问题,其实昨天下班的时候就已经有这个问题了, 就是先进入一个画页,然后再快速离开这个画页再进入其他画页就出现这个错误 了 找了好久也没有找出问题来,一开始以为是网络任务没有cancel ...

  5. 创建menu文件

    一.问题: android studio项目中没有看到menu文件夹: 在android studio项目中想要添加menu布局文件,一开始我的做法是:直接在res文件夹右键选择xml文件来添加,如下 ...

  6. xheditor编辑器的使用

    xheditor编辑器的使用 一个博客.cms网站都一定会用到一个html编辑器,刚好xmfdsh在做网站时候需要用到这类编辑器,在对比了之后,发现其实差不了多少,刚好一个不错的friend在用xhe ...

  7. linux 下 zip unzip压缩与解压

    注:*压缩成限.zip格式文件 常用解压缩: [root@mysql test]# unzip -o test.zip -d tmp/ 将压缩文件test.zip在指定目录tmp下解压缩,如果已有相同 ...

  8. Winform端上传图片到服务器

    转载自  在winform实现文件上传到服务器 webform上传文件可能大家都写过很多,一个HtmlInputFile.PostedFile.SaveAs就搞定了,不过不知道大家有没有在winfor ...

  9. MYSQL权限回收

    给予最小权限 grant '; FLUSH PRIVILEGES 查看全部用户:select * from mysql. user \G. 查看权限. mysql> show grants fo ...

  10. Java中native关键字

    Java中native关键字 标签: Java 2016-08-17 11:44 54551人阅读 评论(0) 顶(23453) 收藏(33546)   今日在hibernate源代码中遇到了nati ...