jdk1.5 Free Download for Windows


  1. Whats the link for downloading jdk1. 2007-12-01 08:05:23

    jdk1.3 is the Java Developer Kit. You can get it from http://www.java.com

    .sh files are Linux shell scripts. Open them in a text editor like Notepad.

  1. How can I make a script for Windows XP that will do these tasks? 2007-10-19 20:56:14

    Yes you can write a batch file. You can write exactly what you have in your question in notepad, and save the file with a name like "myScript.bat". Use the quotes to assure that ".txt" is not appended to the file name. Double clicking on the file will cause it to run.

    As an aside you might want to append the current path to the path line like this:

    set path = %path%;c:\somedirectory

    %path% is the variable that describes the current path.