UGN Security
Posted By: Silent Sniper Having trouble with java - 03/02/03 07:09 PM
alright, this is it. i cant seem to find the java program that i recently installed. by the way, thanks pergesu for the tutorials but i cant use them because i cant get the program runnin. if ne one knows whats wrong or what im not doing correctly, please help

much thanks,
Silent Sniper
Posted By: pergesu Re: Having trouble with java - 03/02/03 07:23 PM
Um, what do you mean? You can't find the java compiler? You can't find a program written in Java? You can't find an IDE you installed? What can't you find?
Posted By: Silent Sniper Re: Having trouble with java - 03/02/03 08:30 PM
sry about that. do i use notepad to write the program and open it in java? what do you need to write the programs? i cant find out where you can write java programs at. that is my question.
Posted By: pergesu Re: Having trouble with java - 03/03/03 12:43 AM
You just need a text editor. Write the program with any old editor, so notepad, and then compile it.
Posted By: Silent Sniper Re: Having trouble with java - 03/03/03 05:03 AM
lol dont get aggrivated with me please. im such a newbie. so when i finish the program where do i go to compile it cause i cant find the compiler in the java software i downloaded.

once againi appreciate your help very much,
Silent Sniper
Posted By: §intå× Re: Having trouble with java - 03/03/03 08:20 AM
You compile it through DOS, or at least I did. check this link...

http://www.javaspot.net/articles.php?action=display&cat=1

this is Pergesu's site. Our resident java guru. His tuts are awsome. I am sure he will also help you more. But these tuts are what you need. Be sure to thank him and tell a friend.
Posted By: pergesu Re: Having trouble with java - 03/03/03 01:24 PM
Don't worry, I won't get aggravated. I'm not so sure I cover installing the JDK in my tutorial, I probably should. They've got instructions though. If you've already installed it, then most likely you have to set the PATH environment variable in order to do it easily. What OS are you running? I only know how to do it in Win2K, which is probably not what you're using... But anyway, you need to append the directory which stores all the executables (java, javac, javaw, jar) to that environment variable. So look for the directory you installed everything into, which is probably C:\j2sdk1.4.1_01. Then edit your path variable so it has C:\j2sdk1.4.1_01\bin at the very beginning. I have no clue how to do this in 98/ME/XP, so if someone else wouldn't mind telling him how, I'd appreciate it. I gotta run to school :\
Posted By: pergesu Re: Having trouble with java - 03/03/03 01:58 PM
That link goes over installing the SDK in windows. Has everything you need. Sorry I can't be more specific, but I gotta leave. Let me know if you have any problems.

http://java.sun.com/j2se/1.4.1/install-windows.html
Posted By: Silent Sniper Re: Having trouble with java - 03/03/03 03:22 PM
ok im totally lost. i dont know what im doing. i set the path and everything but i cant get it to compile i cant find out whats wrong. pleeeeeeeease i need some serious help on java. i might delete the program and start from scratch and see if that might work.
Posted By: §intå× Re: Having trouble with java - 03/03/03 04:14 PM
I seem to rember having some issues when I tryed to learn Java.

Lemme think, First what version of windows are you running?

Second what directory did Java SDK install to?

third post what you type into DOS and what happens.
Posted By: Silent Sniper Re: Having trouble with java - 03/03/03 04:29 PM
in runnin in windows 98 and i downloaded it to the c drive. then i set the path and tried to compile but it didnt recognize the name
Posted By: §intå× Re: Having trouble with java - 03/03/03 05:48 PM
heh, I mean when you installed it. what is the path to it's folder.

something like

c:\program files\JAVA2.1.1


what is the path to the folder java is in, not your program. I think I had to set the path to the compiler javaw or something like that.


Here are the links when pergesu helped me with your problem...

http://rrfn.promodtecnologies.com/yabbse/index.php?board=11;action=display;threadid=795
Posted By: pergesu Re: Having trouble with java - 03/03/03 09:29 PM
Have you installed it? Have you run the setup program, and it created a c:\j2sdk1.4.1_01 directory? If you haven't already, do that. Then go ahead and set the path. If you still can't get it working, copy and post the error. But I don't think you've even installed it, so make sure you have first.
Posted By: Silent Sniper Re: Having trouble with java - 03/03/03 09:59 PM
this is what i did

@C:\PROGRA~1\NORTON~1\NAVDX.EXE /Startup
@ECHO OFF
PATH=%PATH%;C:\jdk1.4.1_02/bin;C:\DOS if not exist toscd001 echo DEVICE=C:\DOS\toscdrom.sys >> c:\config.sys
if exist toscd001 c:\Windows\Command\mscdex /D:TOSCD001 /M:10

tell me if that is correct or do i need to do something diferent
Posted By: Silent Sniper Re: Having trouble with java - 03/03/03 10:37 PM
C:\j2sdk1.4.1_02\bin\javac hello.java
says error cant read hello.java
Posted By: pergesu Re: Having trouble with java - 03/03/03 11:33 PM
alright, well the problem is is that file isn't in that directory. So go to the directory that you saved hello.java to and compile it.
Posted By: Mornse Re: Having trouble with java - 03/04/03 03:53 AM
In DOS go to the directory that 'hello.java' is in and then type in 'javac hello.java' and try it, or is 'hello.java' already in the same directory as 'javac'? If it is, then I don't know what your problem could be.
Posted By: Mornse Re: Having trouble with java - 03/04/03 03:57 AM
Damn pergesu, you typed and posted your message while I was typing mine cause I got distracted in the middle of typing it so it took me awhile, oh well.
Posted By: Silent Sniper Re: Having trouble with java - 03/07/03 12:01 AM
ok but how do i compile? do i just open it in an applet viewer or use dos?
Posted By: pergesu Re: Having trouble with java - 03/07/03 02:45 AM
go into a command line (dos), and cd to the directory that has the file. Then run javac filename. Here's an example.

Code
F:\>cd java\map

F:\java\map>javac Map.java

F:\java\map>java Map
**output not shown**
The first line just goes into the directory that has Map.java. The second entry is compiling the file. The third command actually runs the program, and I didn't show the output because it fills up a screen. So that's what you need to do.
Posted By: Silent Sniper Re: Having trouble with java - 03/07/03 09:26 PM
so this is what i did. i created a folder called java to store my programs. i did the "hello world" program and saved it as hello.java. i went to dos and typed in C:\>cd java and it said invalid directory. then i put the program in the bin folder and did C:\>cd j2sdk1.4.1_02\bin and it said invalid directory. then i did C:\>cd java \bin and so on and still got the same invalid directory. should i put C:\>cd java\hello or C:\>cd j2sdk1.4.1_02\bin\hello to do that?
Posted By: pergesu Re: Having trouble with java - 03/07/03 10:31 PM
Um, your problem isn't with Java then. It's using the command line... so what exactly are you typing? Can you copy the text for us? Just highlight everything and hit enter, and it's copied. Then paste it in your response.
Posted By: Silent Sniper Re: Having trouble with java - 03/08/03 01:13 AM
C:\WINDOWS>cd java\hello
Invalid directory
C:\WINDOWS>cd java
Invalid directory

i set the path to C:\java

thats basically all i did
Posted By: Silent Sniper Re: Having trouble with java - 03/08/03 01:15 AM
java is the folder that hello.java is in
Posted By: pergesu Re: Having trouble with java - 03/08/03 01:19 AM
well dude, there's your problem. You're trying to switch to a relative dir, and C:\WINDOWS\java doesn't exist. c:\java does. So what you need to type is:
C:\WINDOWS>cd c:\java
Posted By: Silent Sniper Re: Having trouble with java - 03/08/03 02:56 AM
Hello.java:6: cannot resolve symbol
symbol : method printIn (java.lang.String)
location: class java.io.PrintStream
System.out.printIn("Hello, world!");
^

i dont know what the arrow means. do i change it?
Posted By: Silent Sniper Re: Having trouble with java - 03/08/03 02:58 AM
arrow is under dot after out, not under S
Posted By: Silent Sniper Re: Having trouble with java - 03/08/03 05:09 AM
nevermind i finally found out the problem and fixed it. by the way thanks pergesu for all of your help on my problem with java. i appreciate it very much.

Silent Sniper

--------------------
This cant be happening!
-Eternal Darkness
Posted By: Crackle Re: Having trouble with java - 03/09/03 04:22 AM
Chris,

Store all of your projects ( class file and your source code ) that you are working on presently in a folder at C:\Java and then store everything that you have completed in a folder labeled C:\Java Projects.

This is what I do and it makes it much easier to work with so when you go into DOS all you have to do is change your path to "C:\j2sdk1.4.0_03" and change your directory to C:\Java ( type "cd c:\Java" at your command prompt without the quotation marks )

I am assuming that you are using pergesu's tutorials as well. If not, pick them up and print them out over at http://www.javaspot.net/articles.php?action=display&cat=1 . They are great and I can't thank pergesu enough.

Catch me on MSN and we can chat about Java.

Peace,
Crackle
© UGN Security Forum