`
yl.fighter
  • 浏览: 257509 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

[转载]读取文件方法大全

    博客分类:
  • Java
阅读更多

[list]
[*]1、按字节读取文件内容
[*]2、按字符读取文件内容
[*]3、按行读取文件内容
[*]4、随机读取文件内容
[/list]
[code="java"]
public class ReadFromFile {
    /**
     * 以字节为单位读取文件,常用于读二进制文件,如图片、声音、影像等文件。
     */
    public static void readFileByBytes(String fileName) {
        File file = new File(fileName);
        InputStream in = null;
        try {
            System.out.println("以字节为单位读取文件内容,一次读一个字节:");
            // 一次读一个字节
            in = new FileInputStream(file);
            int tempbyte;
            while ((tempbyte = in.read()) != -1) {
                System.out.write(tempbyte);
            }
            in.close();
        } catch (IOException e) {
            e.printStackTrace();
            return;
        }
        try {
            System.out.println("以字节为单位读取文件内容,一次读多个字节:");
            // 一次读多个字节
            byte[] tempbytes = new byte[100];
            int byteread = 0;
            in = new FileInputStream(fileName);
            ReadFromFile.showAvailableBytes(in);
            // 读入多个字节到字节数组中,byteread为一次读入的字节数
            while ((byteread = in.read(tempbytes)) != -1) {
                System.out.write(tempbytes, 0, byteread);
            }
        } catch (Exception e1) {
            e1.printStackTrace();
        } finally {
            if (in != null) {
                try {
                    in.close();
                } catch (IOException e1) {
                }
            }
        }
    }

    /**
     * 以字符为单位读取文件,常用于读文本,数字等类型的文件
     */
    public static void readFileByChars(String fileName) {
        File file = new File(fileName);
        Reader reader = null;
        try {
            System.out.println("以字符为单位读取文件内容,一次读一个字节:");
            // 一次读一个字符
            reader = new InputStreamReader(new FileInputStream(file));
            int tempchar;
            while ((tempchar = reader.read()) != -1) {
                // 对于windows下,\r\n这两个字符在一起时,表示一个换行。
                // 但如果这两个字符分开显示时,会换两次行。
                // 因此,屏蔽掉\r,或者屏蔽\n。否则,将会多出很多空行。
                if (((char) tempchar) != '\r') {
                    System.out.print((char) tempchar);
                }
            }
            reader.close();
        } catch (Exception e) {
            e.printStackTrace();
        }
        try {
            System.out.println("以字符为单位读取文件内容,一次读多个字节:");
            // 一次读多个字符
            char[] tempchars = new char[30];
            int charread = 0;
            reader = new InputStreamReader(new FileInputStream(fileName));
            // 读入多个字符到字符数组中,charread为一次读取字符数
            while ((charread = reader.read(tempchars)) != -1) {
                // 同样屏蔽掉\r不显示
                if ((charread == tempchars.length)
                        && (tempchars[tempchars.length - 1] != '\r')) {
                    System.out.print(tempchars);
                } else {
                    for (int i = 0; i < charread; i++) {
                        if (tempchars[i] == '\r') {
                            continue;
                        } else {
                            System.out.print(tempchars[i]);
                        }
                    }
                }
            }

        } catch (Exception e1) {
            e1.printStackTrace();
        } finally {
            if (reader != null) {
                try {
                    reader.close();
                } catch (IOException e1) {
                }
            }
        }
    }


    /**
     * 以行为单位读取文件,常用于读面向行的格式化文件
     */
    public static void readFileByLines(String fileName) {
        File file = new File(fileName);
        BufferedReader reader = null;
        try {
            System.out.println("以行为单位读取文件内容,一次读一整行:");
            reader = new BufferedReader(new FileReader(file));
            String tempString = null;
            int line = 1;
            // 一次读入一行,直到读入null为文件结束
            while ((tempString = reader.readLine()) != null) {
                // 显示行号
                System.out.println("line " + line + ": " + tempString);
                line++;
            }
            reader.close();
        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            if (reader != null) {
                try {
                    reader.close();
                } catch (IOException e1) {
                }
            }
        }
    }


    /**
     * 随机读取文件内容
     */

    public static void readFileByRandomAccess(String fileName) {
        RandomAccessFile randomFile = null;
        try {
            System.out.println("随机读取一段文件内容:");
            // 打开一个随机访问文件流,按只读方式
            randomFile = new RandomAccessFile(fileName, "r");
            // 文件长度,字节数
            long fileLength = randomFile.length();
            // 读文件的起始位置
            int beginIndex = (fileLength > 4) ? 4 : 0;
            // 将读文件的开始位置移到beginIndex位置。
            randomFile.seek(beginIndex);
            byte[] bytes = new byte[10];
            int byteread = 0;
            // 一次读10个字节,如果文件内容不足10个字节,则读剩下的字节。
            // 将一次读取的字节数赋给byteread
            while ((byteread = randomFile.read(bytes)) != -1) {
                System.out.write(bytes, 0, byteread);
            }
        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            if (randomFile != null) {
                try {
                    randomFile.close();
                } catch (IOException e1) {
                }
            }
        }
    }


    /**
     * 显示输入流中还剩的字节数
     */
    private static void showAvailableBytes(InputStream in) {
        try {
            System.out.println("当前字节输入流中的字节数为:" + in.available());
        } catch (IOException e) {
            e.printStackTrace();
        }
    }

    public static void main(String[] args) {
        String fileName = "C:/temp/newTemp.txt";
        ReadFromFile.readFileByBytes(fileName);
        ReadFromFile.readFileByChars(fileName);
        ReadFromFile.readFileByLines(fileName);
        ReadFromFile.readFileByRandomAccess(fileName);
    }
}


// 将内容追加到文件尾部
public class AppendToFile {
    /**
     * A方法追加文件:使用RandomAccessFile
     */
    public static void appendMethodA(String fileName, String content) {
        try {
            // 打开一个随机访问文件流,按读写方式
            RandomAccessFile randomFile = new RandomAccessFile(fileName, "rw");
            // 文件长度,字节数
            long fileLength = randomFile.length();
            //将写文件指针移到文件尾。
            randomFile.seek(fileLength);
            randomFile.writeBytes(content);
            randomFile.close();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }

    /**
     * B方法追加文件:使用FileWriter
     */
    public static void appendMethodB(String fileName, String content) {
        try {
            //打开一个写文件器,构造函数中的第二个参数true表示以追加形式写文件
            FileWriter writer = new FileWriter(fileName, true);
            writer.write(content);
            writer.close();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }

    public static void main(String[] args) {
        String fileName = "C:/temp/newTemp.txt";
        String content = "new append!";
        //按方法A追加文件
        AppendToFile.appendMethodA(fileName, content);
        AppendToFile.appendMethodA(fileName, "append end. \n");
        //显示文件内容
        ReadFromFile.readFileByLines(fileName);
        //按方法B追加文件
        AppendToFile.appendMethodB(fileName, content);
        AppendToFile.appendMethodB(fileName, "append end. \n");
        //显示文件内容
        ReadFromFile.readFileByLines(fileName);
    }
}[/code]
转载自[url]http://www.cnblogs.com/lovebread/archive/2009/11/23/1609122.html[/url]
[code="java"]
/**
     * 以行为单位读取文件,常用于读面向行的格式化文件
     */ 
    public static List<String> readFileByLines(String fileName) { 
     List<String> rules = new ArrayList<String>();
        File file = new File(fileName); 
        BufferedReader reader = null; 
        try { 
            // System.out.println("以行为单位读取文件内容,一次读一整行:"); 
            reader = new BufferedReader(new FileReader(file)); 
            String tempString = null; 
            int line = 1; 
            // 一次读入一行,直到读入null为文件结束 
            String rule = "";
            while ((tempString = reader.readLine()) != null) { 
                // 显示行号 
                // System.out.println("line " + line + ": " + tempString);
               
                rule += tempString + "\n";
                if("end".equals(tempString.trim())){
                 rules.add(rule);
                 rule = "";
                }
                line++; 
            } 
            reader.close(); 
        } catch (IOException e) { 
            e.printStackTrace(); 
        } finally { 
            if (reader != null) { 
                try { 
                    reader.close(); 
                } catch (IOException e1) { 
                } 
            } 
        } 
        return rules;
    } 

public static boolean appendContent(String fileName, String content) { 
        try { 
            //打开一个写文件器,构造函数中的第二个参数true表示以追加形式写文件 
            FileWriter writer = new FileWriter(fileName, true); 
            writer.write(content); 
            writer.close(); 
        } catch (IOException e) { 
            e.printStackTrace();
            return false;
        } 
        return true;
    }
[/code]

 

分享到:
评论

相关推荐

    转载 如何解决Flash导入MP3时读取文件出现的问题

    如何解决Flash导入MP3时读取文件出现的问题

    PHP读取带密码的压缩文件 PHP使用XCDZIP35.ocx

    PHP 有自带的读取ZIP文件的功能,但是却不能读取带密码的ZIP文件。 XCDZIP35.ocx 虽然可以读取带密码的ZIP...5.此功能全部免费,转载时请注明联系方式谢谢。 6.此OCX实现了IObjectSafety安全接口,保证控件自动下载。

    JavaBean实体类 配置文件 代码一键自动生成工具

    ******原创非转载****** ******支持解析Powerdesiger物理逻辑图****** ******非JAVA源码****** 代码一键自动生成工具 可生成Action、JavaBean实体类、Dao及实现类、service及实现类、spring.xml、struts.xml、...

    Socket 传输文件代码转载

    4. **文件读取和发送**:打开文件流`fs`,使用`BinaryReader`读取文件内容,以字节形式存储在`bytes`数组中。在循环中,每次读取一定量的数据,然后使用`tcpStream.Write()`将数据写入网络流,最后通过`socket.Send...

    VC socket传送文件的例子(转载)

    标题"VC socket传送文件的例子(转载)"揭示了我们将讨论如何使用Visual C++(简称VC)通过Socket接口来实现文件的发送与接收。 首先,Socket是网络编程的基本组件,它提供了进程间通信(IPC)的接口,使得运行在...

    java文件路径操作详细(转载)

    Java文件路径操作是Java开发中常见且重要的任务,无论是在读写文件、处理资源还是进行系统交互时,都需要对文件路径进行操作。本篇将详细探讨Java中的文件路径处理技术,主要涵盖以下知识点: 1. **File类**: ...

    HJ-1数据读取补丁(转载)

    HJ-1数据读取补丁,直接双击运行 .sav 或拷贝 sav 文件到 ENVI安装目录的save_add 目录下,启动ENVI-&gt;File-&gt;Open External File-&gt;HJ-1-&gt;HJ-1A /1B Tools工具。直接读取CCD、HIS、IRS数据,输出结果为一个多波段的...

    C programming-读取DAT数据,转成wav格式文件

    DAT数据格式 5A 5A 5A 5A xx xx xx xx xx xx xx xx xx xx xx xx xx xx ...然后根据wav文件结构将其写入wav文件。 本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/yanhc519/archive/2009/12/05/4946228.aspx

    iis 7.5 选中站点提示 错误: 无法读取配置文件的解决方法

    事情原因,原来本地的这台2008 r2服务器是用护卫神的安装包安装的,但文件删除了,iis中的站点并没有删除,所以点击站点出现了这个问题,经过查看这个目录不存在... 您可能感兴趣的文章:IIS7无法读取配置文件解决办法

    Windows PE文件结构解析

    网上的大多资料都是互相转载,很多错误,本人没少走弯路。PE文件解析工具的开发文档由于对本人还有用处,最近两年内不能公开,有需要的可以私下里联系我QQ:1909631452(路痴),可以给你个人,但是也请不要在两年内...

    【RPA之家转载视频教程5】UiPath HandsOn 3第6部分-在CSV文件中写入CSV保存数据表.rar

    3. **读取CSV文件**:UiPath提供“Read CSV”活动,用于从CSV文件中提取数据。了解如何配置此活动,指定输入文件路径,以及如何处理读取的数据。 4. **数据操作**:在RPA流程中,你可能需要对数据进行各种操作,如...

    PELoader自加载PE文件(转载)

    1. **文件解析**:系统读取PE文件头,了解文件结构,包括节区、导入表、导出表等信息。 2. **映像加载**:根据PE文件中的信息,分配内存空间并复制文件内容到内存中。 3. **重定位**:修正由于内存地址变化导致的...

    【RPA之家转载视频教程2】使用UiPath Studio--RPA将文件压缩为ZIP文件格式 (2).rar

    这通常通过“读取文件属性”活动来完成。 2. 创建ZIP文件:然后,使用“创建文件”活动创建一个新的ZIP文件。这个活动允许你指定ZIP文件的名称和保存位置。 3. 添加文件到ZIP:接下来,使用“添加文件到存档”活动将...

    Java实现文件下载

    - 使用`File`类创建一个文件对象,然后通过`FileInputStream`读取文件内容。 - 设置响应头信息,包括`Content-Type`(表示文件类型),`Content-Disposition`(设置文件名,告诉浏览器以下载方式处理)。 - 使用`...

    (转载)AS3.0 音乐播放器 xml加载歌曲

    XML对象提供了许多方法和属性,如`load()`用于加载XML文件,`parseXML()`用于解析字符串形式的XML,`children()`用于获取XML节点的子节点,以及`toString()`用于将XML对象转换为字符串等。通过这些方法,播放器可以...

    【RPA之家转载AA视频教程】14.Configuration .rar

    在这个由RPA之家转载的AA(Automation Anywhere)视频教程中,我们将深入探讨如何在Automation Anywhere A2019版本中处理配置文件,并特别关注如何从XML配置文件中读取节点,以提升自动化效率。 首先,我们要理解...

    (转载)ArcGIS Flex API配合LibertyGISI加载SHP文件.doc

    SHP文件是一种广泛应用的地图数据格式,其结构公开,有很多库可以支持对SHP文件的读取。在本文中,我们将探讨如何使用开源的Flex GIS框架LibertyGIS与ArcGIS Flex API一起在浏览器端加载SHP数据。 LibertyGIS是一个...

    android 文件读写

    本文为朋友转载,希望能帮助学习android的同学

    计算机资料大全 (转载)

    【标题】"计算机资料大全 (转载)"是一个包含多种计算机相关知识资源的集合,其中可能涵盖了从基础到进阶的各类主题。这个标题暗示我们能够在这个压缩包中找到丰富的计算机学习材料,包括但不限于操作系统原理、...

Global site tag (gtag.js) - Google Analytics