Create Your First Java Project using Netbeans 12.5 (2021)

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

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

  • @JJJJ-gl2uf
    @JJJJ-gl2uf 2 года назад +3

    Messed up a couple of times and had to restart, but then finally got it. Thanks.

  • @cosmic_fox6463
    @cosmic_fox6463 Год назад +2

    Very nice project but do wish you could have explained a little bit more but was very clear and with common sense and logic I figured it out.

  • @exxzxxe
    @exxzxxe 3 года назад +1

    Very well done! Clear, concise and complete.

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

    Thank U so muuuuuuuch I see different vedios but u are only help me, Jazaka allah khayran

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

    Excellent Very Easy to understand and practice.Please upload another video to continue the coding

  • @ozgegunaydin85
    @ozgegunaydin85 2 года назад

    pure, clean explenation. Thank you

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

    Мужык. ты чудо! Bravo! Thank you sooooooooo much!

  • @tefotsiu4750
    @tefotsiu4750 3 года назад +1

    Thank you very much you really helped me a lot

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

    Thanks you very much! Clear information

  • @robsongoncalves627
    @robsongoncalves627 3 года назад +1

    Excellent. thank you ! Excelente, Obrigado!!

  • @Cogent-Learning
    @Cogent-Learning Год назад

    It took me a little while but I did it! Great video.

  • @pen9603
    @pen9603 2 года назад

    why am i getting (x: " ") whenever i put an apostrophe? please help.

  • @GervaisKoumou-ox2gm
    @GervaisKoumou-ox2gm Год назад

    Very interesting

  • @PN-hj6zk
    @PN-hj6zk 3 года назад

    I've downloaded the netbeans and using it
    I'm not getting the output.. it just shows
    "run:
    BUILD SUCCESSFUL (total time:0 seconds)"

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

      maybe you are running the wrong class or you are not calling the right function

    • @mrdennisnana
      @mrdennisnana 7 месяцев назад

      I'm having the same issue now and I need help

  • @mnageh-bo1mm
    @mnageh-bo1mm Год назад

    Amazing

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

    First of all thank you so much it help me
    I have questions please when i find an error par exemple like you did in « extende JFrame > u find the import but it didn’t show import in my program ?? How i do it to made it show ?

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

      Ah don’t mind it working now thank you

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

      @@lumu343 You're welcome

  • @MuhammadSulaiman-go7ty
    @MuhammadSulaiman-go7ty 4 месяца назад

    very understandable

  • @معلوماتدوتكوم-خ2ت
    @معلوماتدوتكوم-خ2ت 3 года назад

    sorry but when i writes a code they show me a wrong I don't know what problem can you help me plz

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

      Without seeing the code and the errors, I cannot help you so much. I think that you did not write the code correctly (may be you inversed letters, you have missing letters or did not respect case sensitivity) or your JDK is not installed correctly.

    • @معلوماتدوتكوم-خ2ت
      @معلوماتدوتكوم-خ2ت 3 года назад

      @@BoostMyTool plz are you have a mail can massage you

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

      @@معلوماتدوتكوم-خ2ت boostmytool@gmail.com

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

    Can we use intelliJ instead of netbeans?

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

    Hi man. I have java 17 but when I'm trying to download netbeans it's always says "The specified JDK folder contains JDK version 2724.0.0 while the maximum is 500.0.0". What should I do ?

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

      Unfortunately, I have no idea about this error

    • @UniversalNerdGamers
      @UniversalNerdGamers 3 года назад +1

      It doesn't work with Java 17, uninstall it then download Java 17.0.1, it will work now. Good luck!

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

    I keep getting error messages like project folder already exist

  • @antoniomarcossantos3016
    @antoniomarcossantos3016 3 года назад +1

    Um obrigado aqui do Brasil 🇧🇷

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

      You're welcome, I love Brasil

  • @lutherjohnjomaya2744
    @lutherjohnjomaya2744 2 года назад +4

    Java:
    public static void main(String args[]) {
    int arr[] = {500, 3, 23, 4, 21, 100, 400};
    int temp = 0;

    System.out.println("Original Array");
    for (int x=0; x < arr.length; x++) {
    System.out.print(arr[x] + " ");
    //System.out.println(x);
    }

    //Sort the array in ascending order
    for (int i = 0; i < arr.length; i++) {
    for (int j = i + 1; j < arr.length; j++) {
    if(arr[i] > arr[j]) {
    temp = arr[i];
    arr[i] = arr[j];
    arr[j] = temp;
    }
    }
    }

    System.out.println();

    //Displaying elements of array after sorting
    System.out.println("Elements of array sorted in ascending order: ");
    for (int i = 0; i < arr.length; i++) {
    System.out.print(arr[i] + " ");
    }

    }

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

    thank yuuuuuuuuu sooo much sir

  • @CurtAlertt
    @CurtAlertt 2 года назад

    Thank you so much sir

  • @vitz8572
    @vitz8572 2 года назад

    How to stop that downloading

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

    Thank you very much

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

    masha allah
    bro thank you
    please we are waiting the next lesson

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

      You're welcome. The next lesson will be soon inchallah

  • @panda.7766
    @panda.7766 3 года назад +1

    thank you

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

    Thank you 🙏

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

    I dont get the activate option.

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

      The activate option takes between 10 sec to 10 minutes (depending on your connection speed) to appear. my email is boostmytool@gmail.com but I am too busy today. If you have problems, you can contact me tomorrow. If you are using nb12.5 you can use any jdk. if you are using nb12.4 you should used jdk 15 or lower. if you are using nb12.3 you should use jdk 14 or lower.

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

    Thanks

  • @mohamedchine-ky6yk
    @mohamedchine-ky6yk 2 года назад

    tounsiii ?

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

    i keep on getting errors

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

    thankuu

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

    What you see is what you get

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

    What is ant

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

      a software that will build your java application (you don't need to call javac with your self because ant will do this)

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

      @@BoostMyTool ok i have created a simple project by using ant and whenever i am making any changes in file after saving it.it is not automatically compiling reapetedly i have to build and clean the project then only changes are appearing what to do to avoid this process

    • @BoostMyTool
      @BoostMyTool  3 года назад +1

      @@shubhamscreation9154 this may occur when you use an old verison of netbeans (e.g. nb12.0) with a new verison of Java (e.g. java 17). Try to use the latest verison of netbeans (12.6) and your problem should be fixed. If not, you may need to re-install your java jdk

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

      @@BoostMyTool thanks sir problem solved i had set enviroment variable with jre 1.8 version now replace the path with jdk 17.0.1 and it is working now

  • @krazo2230
    @krazo2230 2 года назад

    can i get the link? i subbed

  • @markcuello5
    @markcuello5 2 года назад

    HELP

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

    What is your email address?

  • @LeoncioPineda-p9f
    @LeoncioPineda-p9f Год назад

    Thank you