Starting Notepad

Classic programmed-learning exercises, refreshed for modern Java and presented in the current MrStyner.com portfolio style.

Modern Java noteThis archive has been refreshed for Java 25 LTS. Core language concepts remain useful, while outdated setup instructions and browser-era Java are labeled or replaced. Java 26 is the current feature release; Java 25 is used here as the stable teaching baseline.
go to previous page   go to home page   go to next page        

Answer:

Yes. If you know how, create a new subdirectory (perhaps "C:/JavaPrograms") and use the CD command to move to it.

With the command prompt window, the command to create a new directory is:

MD directoryName

If you want, you can create a new directory using Windows Explorer and then use CD to move to it in the command prompt window.

Starting Notepad

We will use the Notepad text editor which comes with Microsoft operating systems. Click on the "Start" button in the lower left, then on "All Programs" then on "Accessories", and then on "Notepad". As you might expect, different versions of Windows put Notepad in different places. You may have to hunt.

Roughly similar things can be done on Mac and Linux systems.

Starting Notepad

After clicking on the icon, Notepad starts. Another way is to start it from the command prompt:

C:/TEMP> notepad
C:/TEMP>

QUESTION 9:

Is all this getting to be just too much?