Where is this in the new j2re1.4.1 java version? I want to test my first source, and I think I use the JDK to test it.
Ok, Surf, i have a book titled "Sams Teach Yourself Java 2". And it gives an example for you try and make. I downloaded the .java source from the books website. The says I should first type into my dos prompt cd \MYDOCU~1 then javac HelloDan.java. Well my prompt just displays bad command or file name
Wouldn't the javac be including with the newest release from Java? Also, if I dir the folder, it shows it is in there
Do a search for javac.exe on your hard drive. If installed the Java runtime by itself, then the javac compiler may not be included. There was a package on that website which includes the JDK among other things.
I think you just installed the JRE(or Java Runtime Environment). You need to install the SDK. Go here and install the SDK for windows(English) . That should give you the development tools. I am installing the JRE and SDK just for the hell of it to guide you through. Update: I changed the above link like three times in three seconds. LOL...sorry.
link doesn't work, but JavaTM 2 SDK, Enterprise Edition is what I need right? Well, I don't have win2000 edit:Well its a big file, but I am dloading it. Do you think this will include the javac.exe?
Okay...so I installed the SDK. Apparently, it didn't do a SET PATH to the javac or whatever. So, I go to the dos prompt, type cd j2sdk1.4.1_01\bin to change the directory to where the javac.exe is, then you can type something javac c:\mybookexample\helloworld.java and whatever options you want. And, there you are! You are now a java developer.
Thanks Surf for all of the help. By the way, do you use Java daily because you sure know a lot about it?
Your talking to a developer with 7+ years experience. I have written some Microsoft Java(J++). I know about Sun's implementation of Java. So, I pretty much know Java. But, I know alot of the other languages as well. If you know the concepts behind programming...you can pretty much adapt to any language. Right now...I am on a .NET binge learning C# and all about .NET framework(all that goes with). I know a lot. You basically have to if you want to succeed in the programming arena. You can get left behind in the dust if you don't evolve your skills and skillset. Programming is fun and a great job...especially doing new technology and writing challenging solutions to business needs.
So far, I have made two .java's One's a basic System.out.println(""); while the other is my first object oriented programing, thanks a lot SurfGuy