Java Reading and Writing Binary Files Tutorial

Поделиться
HTML-код
  • Опубликовано: 23 ноя 2024

Комментарии • 20

  • @noblessus
    @noblessus 9 лет назад +4

    I found this video very useful but for some reason ObjectInputStream kept throwing an exception when I asked for it to open a specific file. If anyone else is also having this problem then try replacing every occurrence of ObjectInputStream in your code with DataInputStream instead. That solved the problem for me. Not sure if it's due to some things getting changed in more recent versions of Java or what, but anyway I hope this helps anyone who may be having the same problem I was.

  • @augustc4
    @augustc4 11 лет назад +2

    Thanks for the tutorial! This is exactly what I needed to get started.

    • @kyleyael9482
      @kyleyael9482 3 года назад

      a tip: you can watch movies at flixzone. Been using them for watching all kinds of movies these days.

    • @harryantonio3156
      @harryantonio3156 3 года назад

      @Kyle Yael yea, I have been using Flixzone for since december myself =)

  • @user-tu9kp8jv1d
    @user-tu9kp8jv1d 11 лет назад

    Thanks for the tutorial. But just curious what UI do you use to write your codes?!

  • @MrChAceofspades
    @MrChAceofspades 12 лет назад

    Your videos are so helpful thank you!

  • @rock.finger
    @rock.finger 11 лет назад

    hallo Jose, thank you so much for the lesson, but I tried this and the out.bin doesn't comes out? and I don't have persisted container library, what should I do for getting the library? I use jre7 for the library

  • @rock.finger
    @rock.finger 11 лет назад

    sorry I notice by refreshing my eclipse the bin appear, thank you mr. Jose fro the tutorial

  • @britoroque
    @britoroque 4 года назад

    Como eu posso fazer, em Java, um for loop do maior para o menor?

  • @SahilChaturvedi
    @SahilChaturvedi 11 лет назад +1

    Thanks so much! I just wish you had better sound quality though. :)

  • @kevinma1179
    @kevinma1179 12 лет назад

    Very good!

  • @josemvidal
    @josemvidal  12 лет назад

    Yeah, sorry, I think it was my shirt sleeve sliding across the desk as I type.

  • @Bedocalaway
    @Bedocalaway 7 лет назад

    Thank you!

  • @StaviKay
    @StaviKay 6 лет назад

    thanks dude

  • @rospotrebpozor3873
    @rospotrebpozor3873 9 лет назад

    hex editor, you know??

  • @josemvidal
    @josemvidal  11 лет назад +1

    Eclipse. See my "eclipse tips and tricks for beginners" video.

    • @friktogurg9242
      @friktogurg9242 Год назад

      bruh lol. DO IT IN THE REVERSE ORDER.....

  • @albertlugosi
    @albertlugosi 3 года назад

    What "thirty-two hexadecimal"? "Thirty" has no meaning outside of the decimal system. 😒

  • @EvolutionCode
    @EvolutionCode 12 лет назад

    Great, thank you! Btw its a lot of Shhhh:ing going on!

  • @13pickles13
    @13pickles13 7 лет назад +2

    Hexadecimal to binary is too easy to need a calculator
    AF53 in Hex
    Break it apart
    A F 5 3
    Then convert each of those numbers into 4 bit binary numbers
    1010 1111 0101 0011