Java FileReader (read a file) 📖

  Рет қаралды 79,526

Bro Code

Bro Code

3 жыл бұрын

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 {
FileReader reader = new FileReader("art.txt");
int data = reader.read();
while(data != -1) {
System.out.print((char)data);
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();
}
}
}

Пікірлер: 111
@BroCodez
@BroCodez 3 жыл бұрын
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) { System.out.print((char)data); 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(); } } }
@oguzhantopaloglu9442
@oguzhantopaloglu9442 3 жыл бұрын
Hey bro can you make a tutorial on playing sounds in java? I want to add some music and sound effects to my GUI...
@gparkergparker1026
@gparkergparker1026 Жыл бұрын
Love this channel.
@joyceasante8292
@joyceasante8292 Жыл бұрын
Thank you so much for this tutorial. Your code does not work.:( Here is mine: import java.io.FileReader; import java.io.IOException; public class Main{ public static void main(String[] args){ try{ FileReader reader = new FileReader("lyrics.txt"); int data = reader.read(); while(data!=-1 ){ System.out.println((char) data); data = reader.read(); } reader.close(); }catch(FileNotFoundException e){ e.printStackTrace(); }catch (IOException e){ e.printStackTrace(); } } } There's also an issue with my code. I get this error message: "error(s).Main.java:17: error: cannot find symbol }catch(FileNotFoundException e){ ^ symbol: class FileNotFoundException location: class Main 1 error" If anyone knows how I can fix my code, kindly let me know.
@Chan-he8sk
@Chan-he8sk Жыл бұрын
@@joyceasante8292 i think you forgot to add import java.io.FileNotFoundException;
@joyceasante8292
@joyceasante8292 Жыл бұрын
Issue fixed! Thanks@Chan. import java.io.FileReader; import java.io.IOException; import java.io.FileNotFoundException; public class Main{ public static void main(String[] args){ try{ FileReader reader = new FileReader("lyrics.txt"); int data = reader.read(); while(data!=-1 ){ System.out.println((char) data); data = reader.read(); } reader.close(); }catch(FileNotFoundException e){ e.printStackTrace(); }catch (IOException e){ e.printStackTrace(); } } }
@caidenhiles
@caidenhiles 9 ай бұрын
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!
@jmoney1356
@jmoney1356 2 жыл бұрын
He makes Java very easy to understand thanks bro keep writing code!!!
@davidmonsalve8525
@davidmonsalve8525 3 жыл бұрын
Bro, ill never get tired of saying you're the besssssssssssssst.
@zhenniqi136
@zhenniqi136 2 жыл бұрын
Really amazing work!
@chchong68
@chchong68 2 жыл бұрын
Nice short of video, easy to learn. 👍👍
@danny.3036
@danny.3036 3 жыл бұрын
Thanks, Bro! ☕ You're awesome!
@abhijitbaral9283
@abhijitbaral9283 3 жыл бұрын
thanks for the video bro.. i had no idea about ascii art
@BroCodez
@BroCodez 3 жыл бұрын
You can write some text too. I thought the art would be fun
@amienarya5542
@amienarya5542 3 жыл бұрын
Bagus sekali penjelasannya. 👍👍😎
@omersond4891
@omersond4891 3 жыл бұрын
gotta try catch them all. nice video bro
@higiniofuentes2551
@higiniofuentes2551 3 ай бұрын
Thank you for this very useful video!
@fitzsimmons7
@fitzsimmons7 6 ай бұрын
this was helpful, thank you
@vuchinh9989
@vuchinh9989 3 жыл бұрын
Great video as always
@alpiankhairi8941
@alpiankhairi8941 3 жыл бұрын
awesome🙌 thank you
@kemann3815
@kemann3815 2 жыл бұрын
Appreciated work❤
@kairavpathak2178
@kairavpathak2178 3 жыл бұрын
Amazing vid
@danielmilewski7659
@danielmilewski7659 Жыл бұрын
awesome channel! thanks!
@_Anna_Nass_
@_Anna_Nass_ 2 жыл бұрын
Thanks again, bro 😎
@maweryoutube9852
@maweryoutube9852 3 жыл бұрын
Great and simple
@minhtetpaing1695
@minhtetpaing1695 3 жыл бұрын
Thank you so much sir.
@TheEvertonDias
@TheEvertonDias Жыл бұрын
Thanks, Bro!
@Tretchian
@Tretchian 3 жыл бұрын
Thanks bro!
@alexshepel5599
@alexshepel5599 3 жыл бұрын
Nice, bro!
@dumpling1730
@dumpling1730 10 ай бұрын
Tysm i'm going to my final exam with understanding from your codes
@eugenezuev7349
@eugenezuev7349 3 ай бұрын
cool stuff
@tamirrozenfeld3572
@tamirrozenfeld3572 Жыл бұрын
Thank!
@rockman_zeta
@rockman_zeta Жыл бұрын
Amazing video, would you consider doing a json reader?
@kashivitagors7823
@kashivitagors7823 10 ай бұрын
Thank you Bro from Morocco : )
@aidankasabyrkulova7142
@aidankasabyrkulova7142 3 жыл бұрын
Круто! Я не очень хорошо знаю английский, но я все понимаю. Спасибо)
@wolanus
@wolanus 3 жыл бұрын
Thanks bro. Simple and perfect explanation.
@aliasqar5379
@aliasqar5379 Жыл бұрын
Thanks ;)
@christopher7207
@christopher7207 3 жыл бұрын
nice vid
@Hollywood24297
@Hollywood24297 6 ай бұрын
Thank you for being on KZbin. Your saving me while I take 261 ❤😂😅
@abdullahalmasum5542
@abdullahalmasum5542 3 жыл бұрын
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.
@user-yz9cp6fp4k
@user-yz9cp6fp4k Жыл бұрын
Hi Brroooooo! You are the best
@speklex779
@speklex779 11 ай бұрын
dope video
@percivalgebashe4376
@percivalgebashe4376 Жыл бұрын
Nice
@Saivarun11
@Saivarun11 2 жыл бұрын
damn that ending HEY YOU got me LIKED
@pa-305
@pa-305 3 жыл бұрын
best broo
@longkesh1971
@longkesh1971 Жыл бұрын
Thanks bro.
@Simis999
@Simis999 Жыл бұрын
I like my lectures like I like my beer: clear and inspiring
@matthesdebes1780
@matthesdebes1780 Жыл бұрын
U are a Hero
@ibrahimylmaz8378
@ibrahimylmaz8378 2 жыл бұрын
thanks bro
@jo-de-uz
@jo-de-uz Жыл бұрын
thanks
@aliguseynov9964
@aliguseynov9964 10 ай бұрын
Am I the only one who noticed that in 1:28 our bro has the Nuclear lunch codes folder ? ahahah
@saifmhosen1291
@saifmhosen1291 3 жыл бұрын
Can you make XML tutorials please?
@MrLoser-ks2xn
@MrLoser-ks2xn 2 жыл бұрын
Thanks
@muhammedkabbani6434
@muhammedkabbani6434 Жыл бұрын
super
@tobicipher9300
@tobicipher9300 Жыл бұрын
Leaving a comment for the algorithm
@jazimjazz6928
@jazimjazz6928 3 жыл бұрын
❤️❤️❤️❤️
@augischadiegils.5109
@augischadiegils.5109 3 жыл бұрын
Thanks bro
@BroCodez
@BroCodez 3 жыл бұрын
thanks for watching chadie!
@hamchowder
@hamchowder 2 жыл бұрын
Adding comment for support.
@user-jh7je2cw5p
@user-jh7je2cw5p 2 ай бұрын
Happy brother's day bro
@omardumet120
@omardumet120 3 жыл бұрын
💯
@amadeuss5600
@amadeuss5600 3 жыл бұрын
Why reader.read(); didnt stop unless we put into data variable ?
@monwil3296
@monwil3296 3 жыл бұрын
Hyo Bro 👌, well simplified
@BroCodez
@BroCodez 3 жыл бұрын
thank you Mon Wil!
@123dannyboy100
@123dannyboy100 3 жыл бұрын
I want to become a fellow bro
@sihleeundefined1208
@sihleeundefined1208 3 жыл бұрын
Yoh bro I've been meaning to ask, what is e.printStackTrace()?
@BroCodez
@BroCodez 3 жыл бұрын
It will print the exception that occurs
@user-dw3xe8wb9n
@user-dw3xe8wb9n 3 жыл бұрын
THANKS ALOT )))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))
@user-qe6mg1bd3z
@user-qe6mg1bd3z 5 ай бұрын
Is nobody going to talk about the fact he has nuclear launch codes saved on his desktop?
@BISAMARKSMANDOANG
@BISAMARKSMANDOANG Жыл бұрын
gg
@RaselAhmed-ix5ee
@RaselAhmed-ix5ee 3 жыл бұрын
if i got a file , and it conatins the numbers as 2, 57 7, 78 8,35 how do i read the file and store the 1st and 2nd column in 2 different arrays? please reply its urgent
@BetuBhaiyaAbhi9174
@BetuBhaiyaAbhi9174 Жыл бұрын
drop a comment below!!
@Aliahmadi-fn5of
@Aliahmadi-fn5of 4 ай бұрын
Yooooo😂
@jboz3673
@jboz3673 2 жыл бұрын
Hey man doubt you will see this, u have been very helpful to me, but this just wont work for me, it just keeps saying it cannot find the file. I have no idea what to do and I’ve been struggling in this 6 week summer class for college!
@zeushmorcilla3202
@zeushmorcilla3202 3 жыл бұрын
Bro Code Can You Make A multi account login Form or registration form for console Tutorial?
@mahimasingh4791
@mahimasingh4791 2 жыл бұрын
can't run even if i copy your program and created same file
@shaikadil2197
@shaikadil2197 Жыл бұрын
FileReader fr = new FileReader("C:\\Gfg.txt"); try giving full location
@grozageorge2887
@grozageorge2887 Жыл бұрын
😀
@arielminin873
@arielminin873 Жыл бұрын
anyone know why after i run this the image is shown for like a second and then it disapperead? i even tried it with bro's code and it didnt work
@Pink.Heartz
@Pink.Heartz 7 күн бұрын
Chat bot Ai, you can literally……..🗣🔥
@HamedAthari
@HamedAthari Жыл бұрын
i have a problem in my eclipse the auto generated doesn't appear i have to write it anyone can help me
@caktifanan8984
@caktifanan8984 11 ай бұрын
why cant i use the read method
@alexyakoveno4682
@alexyakoveno4682 Жыл бұрын
nope all file video lessons not working :(, to bad this happens I follow step by step no file in java folder can be seeing but he there no output on console
@tavanogrim
@tavanogrim Жыл бұрын
ahhh it just shows a bunch of number instead of words
@ottttoooo
@ottttoooo 3 жыл бұрын
Bro? 😳
@aboyiphilippa1136
@aboyiphilippa1136 3 ай бұрын
@SMasterF23
@SMasterF23 3 жыл бұрын
I would like the video butt, u know, 420
@soumelee5661
@soumelee5661 Жыл бұрын
@greeneggsandmushrooms9855
@greeneggsandmushrooms9855 3 жыл бұрын
but i dont pray
@zstar8397
@zstar8397 Жыл бұрын
Yo just wanna say that GOD loved the world so much he sent his only begotten son Jesus to die a brutal death for us so that we can have eternal life and we can all accept this amazing gift this by simply believing in him (Jesus) asking for the forgiveness of your sins and forming a relationship with heavenly father.
@maciejkaminski8535
@maciejkaminski8535 3 жыл бұрын
comment
@ahmadbodayr7203
@ahmadbodayr7203 Жыл бұрын
Read About Islam Bro
@mthoko_n
@mthoko_n 3 жыл бұрын
Not well explained for a beginner
@_Anna_Nass_
@_Anna_Nass_ 2 жыл бұрын
I don’t think it gets much easier than that, maybe you need to review some core concepts first.
@romanrubanovich9273
@romanrubanovich9273 3 жыл бұрын
Thanks, Bro!
@gha_mohamed07
@gha_mohamed07 2 ай бұрын
free Palestine
@andiaa2002
@andiaa2002 2 жыл бұрын
Nice
@naz_junior3659
@naz_junior3659 2 жыл бұрын
thanks bro
@PoorwayTraning
@PoorwayTraning Жыл бұрын
thanks
@anjapietralla5767
@anjapietralla5767 6 ай бұрын
@alexyakoveno4682
@alexyakoveno4682 Жыл бұрын
@mudassirnaz1813
@mudassirnaz1813 3 жыл бұрын
thanks
Java audio 🔊
10:28
Bro Code
Рет қаралды 115 М.
Java File Input/Output - It's Way Easier Than You Think
8:18
Coding with John
Рет қаралды 444 М.
Smart Sigma Kid #funny #sigma #comedy
00:40
CRAZY GREAPA
Рет қаралды 31 МЛН
Java exception handling ⚠️
7:53
Bro Code
Рет қаралды 104 М.
Java: Read a CSV File into an Array #49
13:47
Alex Lee
Рет қаралды 199 М.
Java File class 📁
7:20
Bro Code
Рет қаралды 82 М.
Java File I/O (Reading & Writing)
6:58
Keep On Coding
Рет қаралды 185 М.
Java HashMap 🗺️
13:05
Bro Code
Рет қаралды 79 М.
Files In Java - Read Text File Easily #38
7:48
Alex Lee
Рет қаралды 531 М.
Java read CSV File 📰
9:12
Bro Code
Рет қаралды 91 М.
Learn JSON in 10 Minutes
12:00
Web Dev Simplified
Рет қаралды 3,1 МЛН
Java lambda λ
18:00
Bro Code
Рет қаралды 91 М.
Klavye İle Trafik Işığını Yönetmek #shorts
0:18
Osman Kabadayı
Рет қаралды 8 МЛН
Копия iPhone с WildBerries
1:00
Wylsacom
Рет қаралды 8 МЛН
İĞNE İLE TELEFON TEMİZLEMEK!🤯
0:17
Safak Novruz
Рет қаралды 2,1 МЛН