can someone help me create a javadoc from this

i keep using the

javadoc *.java

in the command line and I can't create a javadoc for this file

http://qcpages.qc.cuny.edu/~nixon/cs212/Tutorial-2/TextFileInput.java.html

I keep getting the error that

"'javadoc' is not recognized as an internal or external command"

same with javac as well

what do i do?

[356 byte] By [code_n00ba] at [2007-10-3 3:34:52]
# 1

> i keep using the

> javadoc *.java

> in the command line and I can't create a javadoc for

> this file

> http://qcpages.qc.cuny.edu/~nixon/cs212/Tutorial-2/Tex

> tFileInput.java.html

>

> I keep getting the error that

> "'javadoc' is not recognized as an internal or

> external command"

> same with javac as well

>

> what do i do?

Did you install the sdk or the jre ?

Aknibbsa at 2007-7-14 21:29:28 > top of Java-index,Java Essentials,New To Java...
# 2
jre i think
code_n00ba at 2007-7-14 21:29:28 > top of Java-index,Java Essentials,New To Java...
# 3
JRE is a Java runtime environment. It allows you to run Java classes.SDK is a software development kit. It allows you to develop Java software.
DrClapa at 2007-7-14 21:29:28 > top of Java-index,Java Essentials,New To Java...
# 4
either way can someone please create the javadoc file and post it or send it to me at sillyville17@yahoo.comthanks in advance
code_n00ba at 2007-7-14 21:29:28 > top of Java-index,Java Essentials,New To Java...
# 5

> either way can someone please create the javadoc file

> and post it or send it to me at

> sillyville17@yahoo.com

>

> thanks in advance

Why not install the JDK and do it yourself?

More info: http://java.sun.com/j2se/javadoc/writingdoccomments/

prometheuzza at 2007-7-14 21:29:28 > top of Java-index,Java Essentials,New To Java...
# 6
i dled both zip files but should i extract them somewhere specific and exactly how do i install them?
code_n00ba at 2007-7-14 21:29:28 > top of Java-index,Java Essentials,New To Java...
# 7

> i dled both zip files but should i extract them

> somewhere specific and exactly how do i install them?

A zip fiile? I don't know what you're talking about. You need to install the JDK. Download it here: http://java.sun.com/javase/downloads/index.jsp (3rd download link).

After installation you should be able to use the javadoc-tool.

prometheuzza at 2007-7-14 21:29:28 > top of Java-index,Java Essentials,New To Java...