{{theTime}}

Search This Blog

Total Pageviews

BufferedReader Autocloeable using Try-with-Resource Java Example

import java.io.BufferedReader;
import java.io.FileReader;

/**
 * BufferedReader:  Reads text from a character-input stream
 * BufferedReader implements AutoCloseable, that allows try-with-resource to close automatically.
 */
public class TryWithResourceExample
{   
    public static void main(String[] args) throws Exception {    
        try(BufferedReader breader = new BufferedReader(new FileReader(args[0]))) {
            System.out.println(breader.readLine()) ;
        }
    }
}

No comments:

Optimizing Java Applications for Low-Latency Microservices

Introduction Microservices architecture has become a go-to for building scalable, modular systems, but achieving low latency in Java-based...