zoukankan      html  css  js  c++  java
  • Reading and writing files in Java (Input/Output)

     

    Java Input Output

    This tutorial explains how to read and write files via Java.

     

    1. Java I/O (Input / Output) for files

    1.1. Overview

    Java provides a standard way of reading from and writing to files. Traditionally the java.io package was used, but in modern Java applications you use the java.nio.file API.

    Java will read all input as a stream of bytes. The InputStream class is the superclass of all classes representing an input stream of bytes.

    1.2. Reading a file in Java

    To read a text file you can use the Files.readAllBytes method as demonstrated by the following listing.

    import java.io.IOException;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    // somewhere in your code
    String content = new String(Files.readAllBytes(Paths.get(fileName))); 

    To read a text file line by line into a List of type String structure you can use the following example.

    List<String> lines = Files.readAllLines(Paths.get(fileName)); 

    1.3. Writing a file in Java

    To write a file you can use the following method:

    Files.write(Paths.get(fileName), content.getBytes(), StandardOpenOption.CREATE); 

    1.4. How to identify the current directory

    You can access files relative to the current execution directory of your Java program. To print the current directory in which your Java program is running, you can use the following statement.

    System.out.println(System.getProperty("user.dir")); 
     

    2. Exercise: Reading and writing files

    Create a new Java project called com.vogella.java.files. Create the following FilesUtil.java class.

    package com.vogella.java.files;
    
    import java.io.IOException;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    import java.nio.file.StandardOpenOption;
    import java.util.List;
    
    public class FilesUtil {
      public static String readTextFile(String fileName) throws IOException {
        String content = new String(Files.readAllBytes(Paths.get(fileName)));
        return content;
      }
      
      public static List<String> readTextFileByLines(String fileName) throws IOException {
        List<String> lines = Files.readAllLines(Paths.get(fileName));
        return lines;
      }
      
      public static void writeToTextFile(String fileName, String content) throws IOException {
        Files.write(Paths.get(fileName), content.getBytes(), StandardOpenOption.CREATE);
      }
      
    } 
    

      

    To test these methods, create a text file called file.txt with some content in your project folder. Create the following Main class and run it.

    package com.vogella.java.files;
    
    import java.io.IOException;
    import java.nio.file.Path;
    import java.nio.file.Paths;
    
    public class Main {
      public static void main(String[] args) throws IOException {
        String input = FilesUtil.readTextFile("file.txt");
        System.out.println(input);
        FilesUtil.writeToTextFile("copy.txt", input);
        
        System.out.println(FilesUtil.readTextFile("copy.txt"));
        
        FilesUtil.readTextFileByLines("file.txt");
        Path path = Paths.get("file.txt");
      }
    } 
     
    

      

    3. Reading resources out of your project / jar

    You can read resources from your project or your jar file via the .getClass().getResourceAsStream() method chain from any object.

  • 相关阅读:
    整数的二进制表示中1的个数
    最长公共子序列
    关于使浏览器崩溃的代码尝试
    wp7 独立存储
    动态引用样式表
    锋利的jQuery小记……
    DataGridVidw添加CheckBox。并通过一个 CheckBox来控制其全选。
    全选按钮的使用。winfrom程序中,对全选按钮的理解,欢迎拍砖!
    Ul li 超出文本显示省略号JS右键控制 本人QQ:267307031 空间更多技术咨询
    FileUpload控件
  • 原文地址:https://www.cnblogs.com/hephec/p/4579973.html
Copyright © 2011-2022 走看看