Computer Science Canada where to find java |
Author: | person [ Sat Feb 26, 2005 7:30 pm ] |
Post subject: | where to find java |
can i get Java somewhere for free? |
Author: | wtd [ Sat Feb 26, 2005 7:48 pm ] |
Post subject: | |
http://java.sun.com |
Author: | Hikaru79 [ Sat Feb 26, 2005 11:16 pm ] |
Post subject: | Re: where to find java |
person wrote: can i get Java somewhere for free?
Java *is* free, at least for the uses you most likely have in mind. WTD's link is what you want, just thought I'd clear up the fact that you're not pirating it here or anything ![]() |
Author: | person [ Sun Feb 27, 2005 6:11 pm ] |
Post subject: | |
u guys probably think im lazy or something but im just stupid cuz where do i click next?? SO MANY LINKS! ![]() ![]() |
Author: | Hikaru79 [ Sun Feb 27, 2005 10:43 pm ] |
Post subject: | |
Assuming you're on Windows, here's a more direct link: WITH AN IDE (Netbeans): http://192.18.97.134/ECom/EComTicketServlet/BEGIN3698AB5C54F34D7CA2DB4FF34C2D19C6/-2147483648/754923711/1/562454/562430/754923711/2ts+/westCoastFSEND/j2se-1_5_0-nb-4_0-bin-oth-JPR/j2se-1_5_0-nb-4_0-bin-oth-JPR:3/jdk-1_5_0_01-nb-4_0-bin-win.exe WITHOUT AN IDE (Just the Java SDK): http://dlc.sun.com/jdk/jdk-1_5_0_01-windows-i586-p.exe |
Author: | wtd [ Sun Feb 27, 2005 11:02 pm ] |
Post subject: | |
If you're new (to Java or programming in general), learn to program without an IDE. |
Author: | Martin [ Mon Feb 28, 2005 12:41 pm ] |
Post subject: | |
Use GViM if you're on Windows, or just ViM if you're on Linux. |
Author: | wtd [ Mon Feb 28, 2005 12:54 pm ] |
Post subject: | |
Or, you know, a GUI text editor works just as well, and does syntax highlighting too. Textpad is good on Windows. |
Author: | rizzix [ Mon Feb 28, 2005 3:05 pm ] |
Post subject: | |
well Vim does synax highlight. but i'd recommend gui over cui anyday specially if the gui is done right. (well specially for text editors/word processors) |
Author: | wtd [ Mon Feb 28, 2005 3:12 pm ] |
Post subject: | |
GUI text editor for editing... Command-line for compiling and running. |
Author: | person [ Mon Feb 28, 2005 4:14 pm ] |
Post subject: | |
thanx for all the help |
Author: | person [ Tue Mar 01, 2005 4:12 pm ] |
Post subject: | |
i feel stupid just asking this question but after i install it, it goes into "My Programs" and after i go into the folder there are like a million other folders...so anyways how do i open Java? |
Author: | wtd [ Tue Mar 01, 2005 6:22 pm ] |
Post subject: | |
Start -> Run, enter "cmd" and hit enter. Now try to run "java" and "javac". The former is the program that actually runs compiled programs, and the latter is the compiler itself. |
Author: | person [ Tue Mar 01, 2005 6:57 pm ] |
Post subject: | |
'javac' is not recognized as an internal or external command, operable program or batch file. |
Author: | wtd [ Tue Mar 01, 2005 7:05 pm ] |
Post subject: | |
Ok, then you need to add it to PATH. Which version of Windows? |
Author: | person [ Tue Mar 01, 2005 8:10 pm ] |
Post subject: | |
XP |
Author: | wtd [ Tue Mar 01, 2005 8:34 pm ] |
Post subject: | |
Do you remember which directory you told the installer to put it in? Browse to that directory and find the "bin" directory. |
Author: | person [ Tue Mar 01, 2005 8:47 pm ] |
Post subject: | |
C:\Program Files\Java |
Author: | wtd [ Tue Mar 01, 2005 8:51 pm ] | ||
Post subject: | |||
If you go to Start -> Settings -> Advanced. There should be a panel here to set environment variables. You want to tack:
Onto the end of the PATH variable. |
Author: | Martin [ Wed Mar 02, 2005 9:10 am ] |
Post subject: | |
Vi is really nice because it's set up so you never have to touch the mouse to do anything. Now, obviously you can do this with most programs, but vi seems much more intuitive to me. A definately boost in my productivity when using it at least. |
Author: | person [ Wed Mar 02, 2005 3:26 pm ] |
Post subject: | |
sorry i cant find the advaced button in "Set Program Access and Defaults" |
Author: | wtd [ Wed Mar 02, 2005 3:53 pm ] |
Post subject: | |
1. From the desktop right click My Computer and click properties. 2. In the System Properties window click on the Advanced tab. 3. In the Advanced section click the Environment Variables button. 4. Finally, in the Environment Variables window highlight the path variable in the Systems Variable section and click edit. Add or modify the path lines with the paths you wish the computer to access. Each different directory is separated with a semicolon as shown below. C:\Program Files;C:\Winnt;C:\Winnt\System32 |
Author: | person [ Wed Mar 02, 2005 4:59 pm ] |
Post subject: | |
thanx for ur help but im completely lost |