Java FileReader (read a file) 📖

preview_player
Показать описание
Java FileReader how to read a file tutorial example

#Java #FileReader #read #file #tutorial #example

public class Main {

public static void main(String[] args) {

// FileReader = read the contents of a file as a stream of characters.
//read() returns an int value which contains the byte value
//when read() returns -1, there is no more data to be read

try {
while(data != -1) {
}

} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
} catch (IOException e) {
// TODO Auto-generated catch block
}
}
}
Рекомендации по теме
Комментарии
Автор

public class Main {

public static void main(String[] args) {

// FileReader = read the contents of a file as a stream of characters. One by one
// read() returns an int value which contains the byte value
// when read() returns -1, there is no more data to be read

try {
FileReader reader = new FileReader("art.txt");
int data = reader.read();
while(data != -1) {

data = reader.read();
}
reader.close();

} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}

BroCodez
Автор

Your videos are so helpful bro. Not only do your videos make so much more sense than any googling or even courses I can take, but you make so many of them and you even copy your code down in the description?! You definitely make the best coding tutorials out there. Thank you for the hard work and dedication!

caidenhiles
Автор

thanks for the video bro..
i had no idea about ascii art

abhijitbaral
Автор

He makes Java very easy to understand thanks bro keep writing code!!!

jmoney
Автор

Bro, ill never get tired of saying you're the

davidmonsalve
Автор

Nice short of video, easy to learn. 👍👍

chchong
Автор

gotta try catch them all. nice video bro

omersond
Автор

Watching this from Dhaka, Bangladesh.
i have a request, bro.Please, make a video on how to securely Lock file (like zip-folder do) using java-swing (not just making the file read-only) & keep this good work continuously.

abdullahalmasum
Автор

Tysm i'm going to my final exam with understanding from your codes

dumpling
Автор

Thank you for being on YouTube. Your saving me while I take 261 ❤😂😅

Hollywood
Автор

Thanks bro. Simple and perfect explanation.

wolanus
Автор

Yoh bro I've been meaning to ask, what is e.printStackTrace()?

sihleeundefined
Автор

Am I the only one who noticed that in 1:28 our bro has the Nuclear lunch codes folder ? ahahah

aliguseynov