开云体育

ctrl + shift + ? for shortcuts
© 2025 开云体育

Compiling and running Java programs on Windows 95/98/98SE


 
Edited

1.? Download and install Java SE 1.3 ()
2.? Edit the Java program source via a text editor (e.g. Notepad)
3. Go to the command prompt (on Windows 98, Start>All Programs>MS-DOS Prompt)
4.? Compile the program via the command

? ? ?javac <source>.java

5.? Repeat steps 2-4 till compiled cleanly

6.? Issue the following commands

? ? ? move <source>.class "target_folder_name"
? ? ? (If VLLibSurface is the source: move VLLibrary.class "target_folder_name")
? ? ?cd??"target_folder_name"
? ? ?java? <source> -options filename(s)
? ? ? ? ? (note: .class suffix need not be specified)