Code with AADI
Code with AADI
  • Видео 11
  • Просмотров 159 351
Java Tutorial | Part 4 | How to validate Login Form and verify user
This is the 4th part of the Java Tutorial. In this video, I've shown how to verify the username and password from a text file. At first, we read the UserData file where Username and passwords are stored then it is compared with the username and password that is entered by the user.
#JavaTutorial #Javaforbeginners #JavaLoginForm
Facebook Page: Aadi-Informatix-107881997514797/
Просмотров: 5 289

Видео

JAVA Order Management System
Просмотров 2,1 тыс.4 года назад
This video is the demonstration of the Order Management System. It may be useful for students in their java assignment in conceptualizing the project and some design aspects.
Java Tutorial | How to make User Registration Form with text files | Part 3 |Writing in File
Просмотров 10 тыс.4 года назад
This is Part 3 of Java Tutorial, this video is about making Signup Form and storing the User data in a text file. Here, many concepts of Java is used such as File I/O, Abstraction, Inheritance, etc. Other parts of this Tutorial are: Part 1: ruclips.net/video/Tq7EUZ71Od8/видео.html Part 2: ruclips.net/video/JKtFzIFIABk/видео.html How to install JDK and Netbeans 8 in Windows 10: ruclips.net/video...
How to add JDK path in Windows 10 | Easy Steps | 2020
Просмотров 814 года назад
In this video, I have shown how to add the path variable of JDK 8 in Windows 10. This is demonstrated in short and easy steps. Please watch the full video. Subscribe to the channel. ruclips.net/channel/UC1RtFwMSO3JxdKNUXjsRMQg
Part 2 How to design Register Form in Java in Netbeans IDE | Java Tutorial | Custom Register Form
Просмотров 7 тыс.4 года назад
This is a part of the Java Tutorial. In this video, I have shown how to design a Register form in Netbeans IDE. The demonstration is done in a very simple and easy way. Please Like the video and Subscribe to my channel. ruclips.net/channel/UC1RtFwMSO3JxdKNUXjsRMQg Facebook Page: Aadi-Informatix-107881997514797/ Twitter Account: AadiInformatix
JAVA Tutorial | How to design Login Form using Netbeans IDE | Custom Login Form |Java JFrame
Просмотров 125 тыс.4 года назад
This is a Java Tutorial for beginners in which I have shown how to Design a custom Login Form with Java using Netbeans IDE. Java Tutorial for beginners #Javatutorial #javaforbeginners #GUI Thanks for watching this video. If you have any problems while doing this tutorial please mention it in the comment section. Subscribe to my channel ruclips.net/channel/UC1RtFwMSO3JxdKNUXjsRMQg?view_as=subscr...
My-Tiny.Net SUDO part 1 Random Fortune |APU | SNA
Просмотров 2 тыс.4 года назад
This video is about displaying a random fortune after every login. It is a part of Enhancement 3 in SNA. Choose any 1 Server (i.e. Gateway, Mailhost, Webserver, LDAP) i. Random Fortune after every login For displaying the random fortunes after every login rather than showing the command summary, 1. Install the Ascii Art and Games package from SetupMenu under /mnt/hdc directory. After that, we s...
How to install Netbeans 8.2 and jdk 8 on Windows 10 | Latest 2020 | JAVA
Просмотров 6 тыс.4 года назад
In this video, I have shown how to install Netbeans IDE 8.2 with JAVA JDK 8. Netbeans is the most popular and outstanding IDE for different languages mainly for JAVA. #JAVA #JAVAtutorialforbeginners #Netbeans #JDK8
3D intro video | HD
Просмотров 1424 года назад
This is my new intro video for this channel. Please subscribe to my channel and support me to upload programming and Linux related videos. Facebook Page: Aadi-Informatix-107881997514797/
TinyNetBase.iso Installation | My-TinyNet | TinyNetBase | VirtualBox
Просмотров 9824 года назад
Installation of TinyNetBase.iso Installation Guide File: drive.google.com/open?id=1jbUYNTrhUXKnHoBGry0O7l6x43DeBhdH Prerequisites: Install Oracle VirtualBox Download TinyNetBase.iso image from www.my-tiny.net. Settings * OS Type linux 2.6 32 bit * RAM 96 mb * Disk: vdi, 200mb, fixed size Settings (for each VM) = System: * Boot order: HardDisk, CD, floppy = Storage: * Unattach the vdi from the S...
How to add image in JAVA JFrame | Netbeanse 8.2 | Java Swing
Просмотров 1,1 тыс.4 года назад
In this video, we'll be learning how to insert Background image in Java JFrame Form.

Комментарии

  • @user-up5wc6ys4e
    @user-up5wc6ys4e 5 месяцев назад

    apne yeh bg ke upar jpanel kese use kiya mere m nhi ho rha plz help

  • @jpsgaming4806
    @jpsgaming4806 6 месяцев назад

    The Gender how did you do that

  • @k.t8174
    @k.t8174 8 месяцев назад

    damn really cool!!

  • @kamalpathusha1978
    @kamalpathusha1978 10 месяцев назад

    How to get picture

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

    So helpful

  • @user-fz1mb8rh8z
    @user-fz1mb8rh8z Год назад

    is this photoshop ?

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

    Can you plz send to the source code ....

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

    How to run in NetBeans

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

    The line counter from line 189 onwards does not work from 07:00 It should be a simpler way of adding a lineNumber but not been found yet

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

      OK, I found out that counting code block could not be under the current Java version standards so giving errors, I found the following works better => "int count=0; try (BufferedReader br = new BufferedReader(new FileReader(f))){ while (br.readLine() != null){ count++; } }catch(IOException e){ System.err.println("Error counting lines in file: "+ e.getMessage()); }"

    • @agentplayzz
      @agentplayzz 11 месяцев назад

      @@SylvStone can u help me how to fix that

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

    mmm, from setData in 04:37 to 16:39 I cannot see clearly how you call that function(?)

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

      OK, now I got it, (you create a function, and afterwards, you instantiate it at the submit code block

  • @user-wu1pr9ub4d
    @user-wu1pr9ub4d Год назад

    Dude i have fixed the background picture it's showing small...not set in to frame size

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

    i do as the video shows but i could not run. it says class not found exception

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

    There is no design option in Apache NetBeans.. What should I do.... Please help .. ..

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

    What version of JAR did you used?

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

    api kidar hai......

  • @s.m3jid208
    @s.m3jid208 Год назад

    bro can you please continue the rest (sudo , add users and the colour prompts)

  • @marcoantonioramirezjuarez1231

    Thank you, I appreciate the time you borrowed. This helped me with some things about the decoration that are useful to me.

  • @narutouzumaki-re1yx
    @narutouzumaki-re1yx Год назад

    Sir how do I run this in netbeans apache?

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

    What's song name in vedio Plz

  • @SubhamSingh-ko5dk
    @SubhamSingh-ko5dk 2 года назад

    sir, how do i make the exe files from the given source code? i am unable to create

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

    Bro leave me your email i want to contact you

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

    Brother leav me your email i want to contact you

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

    nice video !

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

    Great stuff man, thank you.

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

    I have also faced this problem anyone help me?

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

    Code

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

    my pic is small, it doesn't fit the jLabel 💔 how can I fix it please ?

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

    please provide source code

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

    can I get all the background pictures that u use in all videos plz

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

    how do you move your arrow to right box on mc mode

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

    Please add links to the description! Thank you for your kind cooperation! :

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

    Mine doesn't write appropriate things I've entered

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

    May I know how is your text file look like?

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

    aadi bro for my form it is not showing the register form.....Bro pls help me..

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

    I met a problem. If I login in by the second or the following user, it will show the invalid credential until the user. For example, the user I log in is the seventh, and it will show 6 times invalid credential before show log in successfully. Is there any way to solve this problem?

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

      same problem help me if you solve this problem

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

      Get rid of the else statement and change the loop to a while loop use a scanner instead of the buffered reader and set the condition for the while loop to nameOfScanner.hasNext

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

      @@didistone8482 did u have the code?

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

      @@ct4364 public boolean verifyUser() throws IOException{ try { File f = new File("UserData.txt"); if(!f.exists()){ f.createNewFile(); } Scanner scanFile = new Scanner(f); while(scanFile.hasNext()){ String line = scanFile.nextLine(); String[] values = line.split(","); if(txtUsername.getText().equals(values[3]) && txtPassword.getText().equals(values[4])){ JOptionPane.showMessageDialog(this, "Welcome "+values[1]+" "+values[2]+" it is great to see you!", "A Successful Login", 1); return true; } } } catch (FileNotFoundException ex) { Logger.getLogger(Login.class.getName()).log(Level.SEVERE, null, ex); } return false; } This worked well for me, I hope it helps

    • @narutouzumaki-re1yx
      @narutouzumaki-re1yx Год назад

      @@ct4364 try changing the event MouseClicked to ActionPerformed then it will be solved

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

    thank

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

    0:42 i cant click the link, no download were started pls help 🙏

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

    This was by far the easiest and clear one

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

    ı tried all the videos but yours is the best and simple so thanks

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

    bro, source code ka ha he bro

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

    good work

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

    Thank You so much for the tutorial

    • @user-of9um8eq7j
      @user-of9um8eq7j 2 года назад

      Hey quick question, at 4:17 how did you layer the panel on. Every time l did it, the panel will shift to the side and will not go onto the middle of the image

    • @user-up5wc6ys4e
      @user-up5wc6ys4e 5 месяцев назад

      same question@@user-of9um8eq7j

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

    yaar kaas aap ne pure process ko explain kiya hota to mere liye zada helpful video hota ye.

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

    Of all the GUI videos I've watched, Yours was the only one that was easy to follow.

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

    So helpful . Thank you so much

  • @43kshitijpatil81
    @43kshitijpatil81 3 года назад

    source code de de bhai

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

    Thanks a lot. It solved my problem

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

    Keep banging bro!

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

    plzz share code sir

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

      visit this Github repo. github.com/aadi2057/OrderManagementSystem

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

    sir from where do we get the code files ? can u share the link ?

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

      goto this github repo github.com/aadi2057/OrderManagementSystem