Reading and writing files in Java (Input/Output) - Tutorial

 

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.

转载于:https://www.cnblogs.com/hephec/p/4579973.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值