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.

  • 相关阅读:
    不同storyboard间跳转
    WWDC2014:留给微软的时间不多了!
    IBOutletCollection 索引获取顺序问题
    iOS下单例模式实现(二)利用宏定义快速实现
    iOS下单例模式实现(一)(objective-c arc gcd)
    windows phone UI吐槽---跑偏了就再也跑不回来了
    iOS沙盒(SanBox)机制与文件操作
    转载:iOS静态库与动态库
    KVO与KVC理解
    iOS多线程编程的几种方式
  • 原文地址:https://www.cnblogs.com/hephec/p/4579973.html
Copyright © 2011-2022 走看看