Posts

How to Create an executable JAR file in NetBeans IDE (Java Source Code)

Image
How to Create an executable JAR file in NetBeans IDE (Java Tutorial with Source Code Example). 👨‍💻 Here is my online course: Visual Basic .NET (VB.NET), Access Database and Crystal Reports Course. 🎯 Enroll now (Full lifetime access): http://bit.ly/2YRy99d Screenshot EP.5: Creating executable JAR file. YouTube :  https://youtu.be/17D5QXSQbKY Related videos : 🚀 4K Java Tutorial Episode 4: Accepting User Input using Scanner class (while loop). 📺 (Part 1/2): https://youtu.be/OB1yAxyLr58 📺 (Part 2/2): https://youtu.be/Q3KsX-lEKdE [FREE SOURCE CODE by iBASSKUNG] Note: Updated Source Code #BEGIN package javauserinput; import java.io.IOException; import java.util.Scanner; import java.util.Calendar; import java.util.InputMismatchException; import java.util.logging.Level; import java.util.logging.Logger; /**  *  * @author iBasskung  */ public class JavaUserInput {     private static String appTitle = "\nHello, Welcome to User Input

Accepting User Input using Scanner class (Java Source Code)

Image
NetBeans IDE : Accepting User Input using Scanner class (Java Tutorial with Source Code). 👨‍💻 Here is my online course: Visual Basic .NET (VB.NET), Access Database and Crystal Reports Course. 🎯 Enroll now (Full lifetime access): http://bit.ly/2YRy99d Screenshot: Java EP.4 - Accepting User Input. Java (Preview):  https://youtu.be/UWcyR5PLrjs Java (Part 1/2): https://youtu.be/OB1yAxyLr58 Java (Part 2/2):  https://youtu.be/Q3KsX-lEKdE [FREE SOURCE CODE by iBASSKUNG] #BEGIN package javauserinput; import java.util.Scanner; import java.util.Calendar; import java.util.InputMismatchException; /**  *  * @author iBasskung  */ public class JavaUserInput {     private static String appTitle = "\nHello, Welcome to User Input App (Scanner Class).\n";     private static String fullName = "";     private static int currentYear = 0;     private static int yearYouBorn = 0;     private static int yourAge = 0;       // Method

How to Create a Super Hello World Program in Java with Source Code

Image
How to Create a Super Hello World Program in Java with Source Code (Free Java Tutorials and Source Code Examples). 👨‍💻 Here is my online course: Visual Basic .NET (VB.NET), Access Database and Crystal Reports Course. 🎯 Enroll now (Full lifetime access): http://bit.ly/2YRy99d Screenshot-1 : Java - Super Hello World Program. Screenshot-2 : Java - Super Hello World Program. Java EP.1 : Download and Install Java JDK and NetBeans IDE on Windows 10. YouTube 4K Video (Ultra HD) https://youtu.be/h6rwRBT0AqA Java EP.2 : How to fix: NetBeans IDE.  The default font size used in menus, dialogs, views, etc. is too small. YouTube 4K Video (Ultra HD) https://youtu.be/GH-nwmzVlUI Java EP.3 : How to Create a Super Hello World Program in Java. YouTube Part 1/2 4K Video (Ultra HD) https://youtu.be/Is3lYobUYe0 YouTube Part 2/2 4K Video (Ultra HD) https://youtu.be/tJwMWslHyBU [FREE SOURCE CODE by iBASSKUNG] #BEGIN package java