{{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:

Setup AWS Application Load Balancer Https

Setting up HTTPS for an AWS Application Load Balancer (ALB) involves configuring an HTTPS listener, deploying an SSL certificate, and defini...