Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

0 and to java: Actually i wonder know how to compile javafx app with command lines in windows i have this code in fxservidor.java

public class Fxservidor extends Application {

    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) {
        launch(args);
    }

    @Override
    public void start(Stage primaryStage) {        
        primaryStage.setTitle("Hello World!");
        Button btn = new Button();
        btn.setText("Say 'Hello World'");
        btn.setOnAction(new EventHandler<ActionEvent>() {

            @Override
            public void handle(ActionEvent event) {
                Synthetizer os = new Synthetizer("Ximena");                
            }
        });

        StackPane root = new StackPane();
        root.getChildren().add(btn);
        primaryStage.setScene(new Scene(root, 300, 250));
        primaryStage.show();
    }
}
share|improve this question

4 Answers

You use the Java Compiler to compile JavaFX programs:

"%JDK_HOME%\bin\javac" -classpath "%JAVAFX_SDK_HOME%\rt\lib\jfxrt.jar" fxservidor.java 

Replace the JDK_HOME and JAVAFX_SDK_HOME placeholders with the paths to your installed JDK and JavaFX SDK respectively.

A sample windows batch script for JavaFX command line development and deployment packaging is provided here.


Here is a modified version of your program which will compile:

import javafx.application.Application;
import javafx.event.ActionEvent;
import javafx.event.EventHandler;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.layout.StackPane;
import javafx.stage.Stage;

public class Fxservidor extends Application {

    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) {
        launch(args);
    }

    @Override public void start(Stage primaryStage) {        
        primaryStage.setTitle("Hello World!");
        Button btn = new Button();
        btn.setText("Say 'Hello World'");
        btn.setOnAction(new EventHandler<ActionEvent>() {
            @Override
            public void handle(ActionEvent event) {
//            Synthetizer os = new Synthetizer("Ximena");                
            }
        });

        StackPane root = new StackPane();
        root.getChildren().add(btn);
        primaryStage.setScene(new Scene(root, 300, 250));
        primaryStage.show();
    }

}

Here is a command I ran on my machine to compile it (you need to adjust the classpath for your environment):

javac -classpath "\Program Files\Oracle\JavaFX 2.1 Runtime\lib\jfxrt.jar" Fxservidor.java

And here is a command I used to run the compiled class:

java -classpath "\Program Files\Oracle\JavaFX 2.1 Runtime\lib\jfxrt.jar;." Fxservidor

Update: Note the ;. tokens used to append the current directory to the classpath of the java execution command in Windows (if using a Unix variant, then use :. instead of ;.).

share|improve this answer
Error:Can't find symbol Application – Jhuaraya Feb 24 '12 at 19:06
I updated the answer to include the missing import statements from your sample code, comment out the unsupplied Synthetizer class so the code can compile and add the exact command I used to compile and run the updated program. – jewelsea Feb 24 '12 at 20:59
javac -classpath "\Program Files\Oracle\JavaFX 2.1 Runtime\lib\jfxrt.jar" Fxservidor.java

I ran the above command on Ubuntu Linux with JavaFX2.0 beta it compiled it's class files but when I tried to run it with this command it did not work.

java -classpath "\Program Files\Oracle\JavaFX 2.1 Runtime\lib\jfxrt.jar" Fxservidor

This is the error message I get:

Error: Could not find or load main class Fxservidor

share|improve this answer
1  
I updated my answer: under Linux you need to append :. to the runtime classpath to allow the java runtime to find the classes you have compiled to the current directory. – jewelsea May 13 '12 at 18:23

In macbook, osx, etc, you can compile:

javac -cp "/Library/Java/JavaVirtualMachines/jdk1.7.0_09.jdk/Contents/Home/jre/lib/jfxrt.jar" Fxservidor.java

and run:

java -cp ".:/Library/Java/JavaVirtualMachines/jdk1.7.0_09.jdk/Contents/Home/jre/lib/jfxrt.jar" Fxservidor

Note the .: instead of .;

share|improve this answer

Raw but simple solution is to put a copy of jfxrt.jar file into the .../jre7/lib/ext directory under your java installation.

Then, you should always have it available on your classpath.

Not recommended for distributing jfx apps, of course, but convenient for developer playing around...

(For explanation, see: http://docs.oracle.com/javase/tutorial/ext/basics/install.html)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.