English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
Todas as categorias

Tipo aqule tela do DOS, Alguem pode me ajudar?

Usage: java [-options] class [args...]
(to execute a class)
or java [-options] -jar jarfile [args...]
(to execute a jar file)

where options include:
-client to select the "client" VM
-server to select the "server" VM
-hotspot is a synonym for the "client" VM [deprecated]
The default VM is client.

-cp
-classpath
A ; separated list of directories, JAR archives,
and ZIP archives to search for class files.
-D=
set a system property
-verbose[:class|gc|jni]
enable verbose output
-version print product version and exit
-version:
require the specified version to run
-showversion print product version and continue
-jre-restrict-search | -jre-no-restrict-search
include/exclude user private JREs in the version search
-? -help print this help message
-X print help on non-standard options
-ea[:

2006-07-30 02:30:22 · 1 respostas · perguntado por Igor LPS 2 em Computadores e Internet Software

1 respostas

Para compilar um programa em Java, você deve utilizar o utilitário "javac", e não "java", assim:

javac Classe.java

Ele vai gerar um arquivo com a extensão .class (no exemplo acima, "Classe.class"). Para executar a sua classe já compilada, aí sim utiliza-se o utilitário "java", assim:

java Classe

2006-07-30 04:39:00 · answer #1 · answered by Alexandre S 2 · 0 0

fedest.com, questions and answers