Java FileReader (read a file) 📖

Поділитися
Вставка
  • Опубліковано 17 січ 2025

КОМЕНТАРІ • 116

  • @BroCodez
    @BroCodez  4 роки тому +62

    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 4 роки тому +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 2 роки тому

      Love this channel.

    • @joyceasante8292
      @joyceasante8292 2 роки тому

      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 Рік тому +1

      @@joyceasante8292 i think you forgot to add
      import java.io.FileNotFoundException;

    • @joyceasante8292
      @joyceasante8292 Рік тому +2

      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!

  • @davidmonsalve8525
    @davidmonsalve8525 3 роки тому +6

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

  • @jmoney1356
    @jmoney1356 3 роки тому +8

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

  • @abhijitbaral9283
    @abhijitbaral9283 4 роки тому +12

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

    • @BroCodez
      @BroCodez  4 роки тому +2

      You can write some text too. I thought the art would be fun

  • @amienarya5542
    @amienarya5542 3 роки тому

    Bagus sekali penjelasannya. 👍👍😎

  • @chchong68
    @chchong68 3 роки тому +2

    Nice short of video, easy to learn. 👍👍

  • @aliguseynov9964
    @aliguseynov9964 Рік тому +4

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

  • @zhenniqi136
    @zhenniqi136 2 роки тому +2

    Really amazing work!

  • @omersond4891
    @omersond4891 3 роки тому +1

    gotta try catch them all. nice video bro

  • @higiniofuentes2551
    @higiniofuentes2551 9 місяців тому

    Thank you for this very useful video!

  • @theterminator1410
    @theterminator1410 4 роки тому +3

    Can you make XML tutorials please?

  • @danny.3036
    @danny.3036 3 роки тому

    Thanks, Bro! ☕ You're awesome!

  • @dumpling1730
    @dumpling1730 Рік тому

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

  • @jazimjazz6928
    @jazimjazz6928 4 роки тому +1

    ❤️❤️❤️❤️

  • @sihleeundefined1208
    @sihleeundefined1208 4 роки тому +6

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

    • @BroCodez
      @BroCodez  4 роки тому +7

      It will print the exception that occurs

  • @hamchwder
    @hamchwder 2 роки тому

    Adding comment for support.

  • @abdullahalmasum5542
    @abdullahalmasum5542 4 роки тому +1

    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.

  • @fitzsimmons7
    @fitzsimmons7 Рік тому

    this was helpful, thank you

  • @alpiankhairi8941
    @alpiankhairi8941 3 роки тому +1

    awesome🙌 thank you

  • @Hollywood24297
    @Hollywood24297 11 місяців тому

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

  • @aidankasabyrkulova7142
    @aidankasabyrkulova7142 3 роки тому +2

    Круто! Я не очень хорошо знаю английский, но я все понимаю. Спасибо)

  • @maweryoutube9852
    @maweryoutube9852 4 роки тому

    Great and simple

  • @eugenezuev7349
    @eugenezuev7349 8 місяців тому

    cool stuff

  • @andiaa2002
    @andiaa2002 3 роки тому

    Nice

  • @muhammedkabbani6434
    @muhammedkabbani6434 2 роки тому

    super

  • @Simis999
    @Simis999 2 роки тому +2

    I like my lectures like I like my beer: clear and inspiring

  • @kemann3815
    @kemann3815 3 роки тому

    Appreciated work❤

  • @rockman_zeta
    @rockman_zeta 2 роки тому

    Amazing video, would you consider doing a json reader?

  • @amadeuss5600
    @amadeuss5600 3 роки тому +1

    Why reader.read(); didnt stop unless we put into data variable ?

  • @wolanus
    @wolanus 4 роки тому +3

    Thanks bro. Simple and perfect explanation.

  • @_Anna_Nass_
    @_Anna_Nass_ 2 роки тому

    Thanks again, bro 😎

  • @minhtetpaing1695
    @minhtetpaing1695 3 роки тому

    Thank you so much sir.

  • @vuchinh9989
    @vuchinh9989 3 роки тому

    Great video as always

  • @danielmilewski7659
    @danielmilewski7659 2 роки тому

    awesome channel! thanks!

  • @tobicipher9300
    @tobicipher9300 2 роки тому

    Leaving a comment for the algorithm

  • @monwil3296
    @monwil3296 4 роки тому +2

    Hyo Bro 👌, well simplified

    • @BroCodez
      @BroCodez  4 роки тому +1

      thank you Mon Wil!

  • @123dannyboy100
    @123dannyboy100 3 роки тому +1

    I want to become a fellow bro

  • @Saivarun11
    @Saivarun11 2 роки тому

    damn that ending HEY YOU got me
    LIKED

  • @kairavpathak2178
    @kairavpathak2178 4 роки тому +1

    Amazing vid

  • @Logeshwaran-t4z
    @Logeshwaran-t4z 7 місяців тому

    Happy brother's day bro

  • @kashivitagors7823
    @kashivitagors7823 Рік тому

    Thank you Bro from Morocco : )

  • @tamirrozenfeld3572
    @tamirrozenfeld3572 2 роки тому

    Thank!

  • @MrLoser-ks2xn
    @MrLoser-ks2xn 2 роки тому

    Thanks

  • @aliasqar5379
    @aliasqar5379 Рік тому

    Thanks ;)

  • @Tretchian
    @Tretchian 3 роки тому

    Thanks bro!

  • @longkesh1971
    @longkesh1971 Рік тому

    Thanks bro.

  • @НікітаОрлов-с3ч
    @НікітаОрлов-с3ч 2 роки тому

    Hi Brroooooo! You are the best

  • @jboz3673
    @jboz3673 2 роки тому +1

    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!

  • @romario92730
    @romario92730 3 роки тому

    Thanks, Bro!

  • @naz_junior3659
    @naz_junior3659 2 роки тому

    thanks bro

  • @matthesdebes1780
    @matthesdebes1780 Рік тому

    U are a Hero

  • @mudassirnaz1813
    @mudassirnaz1813 3 роки тому

    thanks

  • @omardumet120
    @omardumet120 4 роки тому

    💯

  • @speklex779
    @speklex779 Рік тому

    dope video

  • @alexshepel5599
    @alexshepel5599 4 роки тому +1

    Nice, bro!

  • @pa-305
    @pa-305 3 роки тому

    best broo

  • @mahimasingh4791
    @mahimasingh4791 2 роки тому +8

    can't run even if i copy your program and created same file

    • @shaikadil2197
      @shaikadil2197 Рік тому +3

      FileReader fr = new FileReader("C:\\Gfg.txt"); try giving full location

  • @augischadiegils.5109
    @augischadiegils.5109 4 роки тому

    Thanks bro

    • @BroCodez
      @BroCodez  4 роки тому

      thanks for watching chadie!

  • @christopher7207
    @christopher7207 3 роки тому

    nice vid

  • @CocoaRoe
    @CocoaRoe 10 місяців тому

    Is nobody going to talk about the fact he has nuclear launch codes saved on his desktop?

  • @RaselAhmed-ix5ee
    @RaselAhmed-ix5ee 4 роки тому

    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

  • @alexyakoveno4682
    @alexyakoveno4682 2 роки тому

    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

  • @علاءعبدالجواد-ي9ي
    @علاءعبدالجواد-ي9ي 3 роки тому

    THANKS ALOT )))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))

  • @caktifanan8984
    @caktifanan8984 Рік тому

    why cant i use the read method

  • @Pink.Heartz
    @Pink.Heartz 5 місяців тому

    Chat bot Ai, you can literally……..🗣🔥

  • @zeushmorcilla3202
    @zeushmorcilla3202 4 роки тому

    Bro Code
    Can You Make A multi account login Form
    or registration form for console Tutorial?

  • @AhmadAlsaleh-h5b
    @AhmadAlsaleh-h5b 2 місяці тому

    You are a GOAT

  • @HamedAthari
    @HamedAthari 2 роки тому

    i have a problem in my eclipse the auto generated doesn't appear i have to write it anyone can help me

  • @arielminin873
    @arielminin873 2 роки тому

    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

  • @BISAMARKSMANDOANG
    @BISAMARKSMANDOANG 2 роки тому

    gg

  • @tavanogrim
    @tavanogrim 2 роки тому

    ahhh it just shows a bunch of number instead of words

  • @alexyakoveno4682
    @alexyakoveno4682 2 роки тому

  • @BetuBhaiyaAbhi9174
    @BetuBhaiyaAbhi9174 2 роки тому

    drop a comment below!!

  • @ap1136-c4m
    @ap1136-c4m 9 місяців тому

  • @anjapietralla5767
    @anjapietralla5767 Рік тому

  • @ottttoooo
    @ottttoooo 3 роки тому

    Bro? 😳

  • @Aliahmadi-fn5of
    @Aliahmadi-fn5of 9 місяців тому

    Yooooo😂

  • @arjundas7078
    @arjundas7078 5 місяців тому

    One more to go to make this happen by doing code...

  • @SMasterF23
    @SMasterF23 3 роки тому

    I would like the video butt, u know, 420

  • @greeneggsandmushrooms9855
    @greeneggsandmushrooms9855 3 роки тому

    but i dont pray

  • @zstar8397
    @zstar8397 Рік тому +2

    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.

  • @farhanhussami1836
    @farhanhussami1836 12 днів тому

    no way

  • @antoinealam6531
    @antoinealam6531 4 місяці тому

    bro

  • @mthoko_n
    @mthoko_n 4 роки тому

    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.

  • @ahmadbodayr7203
    @ahmadbodayr7203 2 роки тому +1

    Read About Islam Bro

  • @grozageorge2887
    @grozageorge2887 Рік тому

    😀

  • @percivalgebashe4376
    @percivalgebashe4376 Рік тому

    Nice

  • @mohammedzaidkhan5687
    @mohammedzaidkhan5687 Місяць тому

    Thanks

  • @TheEvertonDias
    @TheEvertonDias Рік тому

    Thanks, Bro!

  • @ibrahimylmaz8378
    @ibrahimylmaz8378 2 роки тому

    thanks bro

  • @jo-de-uz
    @jo-de-uz 2 роки тому

    thanks

  • @soumelee5661
    @soumelee5661 2 роки тому

  • @PoorwayTraning
    @PoorwayTraning Рік тому

    thanks