Wednesday, October 31, 2007
자바 에러 메시지] javac은(는) 내부 또는 외부 명령, 실행할 수 있는 프로그램, 또는 배치 파일이 아닙니다
윈도우의 도스창(CMD.EXE)에서 "자바 컴파일러"를 실행하기 위해 javac 라는 명령을 주면
이런 에러 메시지가 나오는 경우가 많을 것입니다. 이것은 자바의 에러가 아니라, 윈도우의 에러입니다. 윈도우2000이나 윈도우XP에는 자바컴파일러인 javac.exe 파일이 기본적으로 설치되어 있지 않습니다. 그래서 그런 파일이 없어서 실행할 수 없기에 위의 에러 메세지가 출력됩니다.
"자바 개발 도구"인 JDK를 무료로 다운받아서 컴퓨터에 설치해 주고 javac 라고 하면 아래 화면처럼 자바컴파일러의 도움말 화면이 나오게 됩니다.
'javac'은(는) 내부 또는 외부 명령, 실행할 수 있는 프로그램, 또는 배치 파일이 아닙니다.
이런 에러 메시지가 나오는 경우가 많을 것입니다. 이것은 자바의 에러가 아니라, 윈도우의 에러입니다. 윈도우2000이나 윈도우XP에는 자바컴파일러인 javac.exe 파일이 기본적으로 설치되어 있지 않습니다. 그래서 그런 파일이 없어서 실행할 수 없기에 위의 에러 메세지가 출력됩니다.
"자바 개발 도구"인 JDK를 무료로 다운받아서 컴퓨터에 설치해 주고 javac 라고 하면 아래 화면처럼 자바컴파일러의 도움말 화면이 나오게 됩니다.
D:\Z>javac
Usage: javac <options> <source files>
where possible options include:
-g Generate all debugging info
-g:none Generate no debugging info
-g:{lines,vars,source} Generate only some debugging info
-nowarn Generate no warnings
-verbose Output messages about what the compiler is doing
-deprecation Output source locations where deprecated APIs are u
sed
-classpath <path> Specify where to find user class files
-cp <path> Specify where to find user class files
-sourcepath <path> Specify where to find input source files
-bootclasspath <path> Override location of bootstrap class files
-extdirs <dirs> Override location of installed extensions
-endorseddirs <dirs> Override location of endorsed standards path
-d <directory> Specify where to place generated class files
-encoding <encoding> Specify character encoding used by source files
-source <release> Provide source compatibility with specified release
-target <release> Generate class files for specific VM version
-version Version information
-help Print a synopsis of standard options
-X Print a synopsis of nonstandard options
-J<flag> Pass <flag> directly to the runtime system
D:\Z>
Usage: javac <options> <source files>
where possible options include:
-g Generate all debugging info
-g:none Generate no debugging info
-g:{lines,vars,source} Generate only some debugging info
-nowarn Generate no warnings
-verbose Output messages about what the compiler is doing
-deprecation Output source locations where deprecated APIs are u
sed
-classpath <path> Specify where to find user class files
-cp <path> Specify where to find user class files
-sourcepath <path> Specify where to find input source files
-bootclasspath <path> Override location of bootstrap class files
-extdirs <dirs> Override location of installed extensions
-endorseddirs <dirs> Override location of endorsed standards path
-d <directory> Specify where to place generated class files
-encoding <encoding> Specify character encoding used by source files
-source <release> Provide source compatibility with specified release
-target <release> Generate class files for specific VM version
-version Version information
-help Print a synopsis of standard options
-X Print a synopsis of nonstandard options
-J<flag> Pass <flag> directly to the runtime system
D:\Z>
tag: java
자바 | Java
<< Home