Day 2: Setting Up Java Development Environment

My name is Enaburekhan Praise, a dedicated and ambitious Computer Engineering student in my third year at Caritas University, Enugu, Amorji-Nike, Nigeria. Hailing from Edo State, I have honed my skills in HTML and CSS, which form the backbone of my web development projects.
I am known for my hardworking nature and reliability, consistently delivering on commitments both academically and personally. As a proficient computer literate, I possess extensive knowledge of MS applications, enabling me to handle various computing tasks with ease. My expertise in website development is complemented by a keen eye for detail and a passion for creating user-friendly digital experiences.
In addition to my technical skills, I am a strong problem solver and an effective communicator, always eager to learn and adapt in the ever-evolving field of technology. My commitment to continuous improvement and my ability to work well both independently and as part of a team make me a valuable asset in any setting.
Hey guys, it's me again. Today we're going to be looking at how we can set up our development environment before diving into coding.
We'll take it step-by-step:
Step 1: Download and Install Java on your system
1. Go to the [Oracle JDK download page]. https://www.oracle.com/technetwork/java/javase/overview/index.html
2. Download the latest version of JDK for your operating system.
3. Run the installer and follow the on-screen instructions to complete the installation.
Step 2: Set Up Your IDE
An Integrated Development Environment (IDE) makes coding easier and more efficient. Popular choices include Eclipse, IntelliJ IDEA, Visual Studio, etc. (Here, I'm using the visual studio code).
Step 3: Configure Environment Variables
Go to "System Properties" (Can be found on Control Panel > System and Security > System > Advanced System Settings)
Click on the "Environment variables" button under the "Advanced" tab
Then, select the "Path" variable in System variables and click on the "Edit" button
Click on the "New" button and add the path where Java is installed, followed by \bin. By default, Java is installed in C:\Program Files\Java\jdk-11.0.1 (If nothing else was specified when you installed it). In that case, You will have to add a new path with: C:\Program Files\Java\jdk-11.0.1\bin
Then, click "OK", and save the settingsAt last, open Command Prompt (cmd.exe) and type java -version to see if Java is running on your machine
Note: No matter which IDE you choose, it's crucial to master it's features and functionalities. Familiarizing yourself with your IDE will make coding more efficient and comfortable.



