Skip to content

Instantly share code, notes, and snippets.

View atechcrew's full-sized avatar

ATechCrew atechcrew

View GitHub Profile
@atechcrew
atechcrew / ReadFile.java
Created July 9, 2018 13:25
Read File in Java. Simple Java Code to Read File and Display.
import java.io.BufferedReader;
import java.io.File;
import java.io.FileReader;
public class ReadFile {
public static void main(String args[]) {
try {
File file_path = new File("file path with extension");
FileReader file_reader = new FileReader(file_path);
BufferedReader file = new BufferedReader(file_reader);