一、JDK15.0.1安裝與配置
https://blog.csdn.net/weixin_28724003/article/details/114157778
二狸相、JavaFX 11 安裝與配置
下載地址:https://gluonhq.com/products/javafx/
配置教程:https://openjfx.cn/openjfx-docs/#install-javafx
三、IDEA安裝和配置
IDEA下載地址:
https://www.jetbrains.com/zh-cn/idea/download/
IDEA JDK配置
一般程序會自動檢索環(huán)境變量中的JDK路徑打瘪,所以一般可以忽略這步
https://blog.csdn.net/qq_28289405/article/details/82698856
IDEA的JavaFX配置
https://www.jb51.net/article/198739.htm
IDEA的javaFX插件安裝
參考自:https://blog.csdn.net/hst_gogogo/article/details/82530929
在IDEA中啟用 JavaFX 插件:Ctrl+Alt+S,點擊plugin(插件)傻昙,然后搜索fx闺骚,勾上JavaFx的復(fù)選框,OK
四屋匕、創(chuàng)建一個JavaFX項目
參考自:
- https://blog.csdn.net/wangmx1993328/article/details/80769199
- https://blog.csdn.net/qq_40059532/article/details/103284500
- https://blog.csdn.net/wangmx1993328/article/details/80769199
- https://blog.csdn.net/mouday/article/details/100186537
- https://www.cnblogs.com/lcyxy/p/12675731.html
- http://www.jikedaquan.com/1723.html
File--New--Project--next--填入項目名和路徑--Finsh
右鍵src--New--Java Class--類名(Test)
按照API文檔進行UI組件的接口繼承 和 方法重寫
API文檔:
以下demo代碼源自:https://blog.csdn.net/wangmx1993328/article/details/80769199
Test.java:
/**
* Created by Administrator on 2018/6/22 0022.
* 下面這些javafx.*下面的API都是JDK8葛碧、JRE8中內(nèi)置好的借杰,直接調(diào)用即可
*/
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;
import java.util.concurrent.atomic.AtomicInteger;
/**
* Java作為GUI(圖形化用戶界面)程序
* 1过吻、入口必須繼承Application抽象類
*/
public class Test extends Application {
/**
* atomicInteger:用于統(tǒng)計用戶單擊按鈕的次數(shù)
*/
private static AtomicInteger atomicInteger = new AtomicInteger(0);
/**
* 2、然后實現(xiàn)的它的start抽象方法
*
* @param primaryStage
*/
@Override
public void start(Stage primaryStage) {
/**創(chuàng)建一個按鈕控件
* 并設(shè)置按鈕上的文字蔗衡,同時為他綁定單擊事件纤虽,鼠標點擊按鈕后,控制臺輸出"Hello Friend"*/
Button btn = new Button();
btn.setText("Say 'Hello Friend'");
btn.setOnAction(new EventHandler<ActionEvent>() {
@Override
public void handle(ActionEvent event) {
System.out.println(atomicInteger.addAndGet(1) + ":Hello Friend");
}
});
/**創(chuàng)建一個堆棧面板绞惦,面板包含控件*/
StackPane root = new StackPane();
root.getChildren().add(btn);
/**創(chuàng)建一個場景逼纸,場景包含面板*/
Scene scene = new Scene(root, 300, 250);
/**最后將場景放入到舞臺中,舞臺包含場景<-場景包含面板<-面板包含控件*/
primaryStage.setTitle("Hello World");
primaryStage.setScene(scene);
/**顯示*/
primaryStage.show();
}
public static void main(String[] args) {
/**
* GUI程序必須從入口的main方法進入并啟動
* launch是Application中的济蝉,調(diào)用它則可啟動此GUI程序了
*/
launch(args);
}
}
或者可以將Test.java內(nèi)容替換為:
以下demo代碼來自:http://www.jikedaquan.com/1723.html
import javafx.application.Application;
import javafx.geometry.Insets;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.control.CheckBox;
import javafx.scene.control.RadioButton;
import javafx.scene.control.TextField;
import javafx.scene.layout.FlowPane;
import javafx.stage.Stage;
public class Test2 extends Application {
@Override
public void start(Stage primaryStage) throws Exception {
FlowPane root = new FlowPane();
root.setHgap(10);
root.setVgap(20);
root.setPadding(new Insets(15,15,15,15));
// Button 1
Button button1= new Button("Button1");
root.getChildren().add(button1);
// Button 2
Button button2 = new Button("Button2");
button2.setPrefSize(100, 100);
root.getChildren().add(button2);
// TextField
TextField textField = new TextField("Text Field");
textField.setPrefWidth(110);
root.getChildren().add(textField);
// CheckBox
CheckBox checkBox = new CheckBox("Check Box");
root.getChildren().add(checkBox);
// RadioButton
RadioButton radioButton = new RadioButton("Radio Button");
root.getChildren().add(radioButton);
Scene scene = new Scene(root, 550, 250);
primaryStage.setTitle("FlowPane Layout Demo");
primaryStage.setScene(scene);
primaryStage.show();
}
public static void main(String[] args) {
launch(args);
}
}
最后聲明一個Main主類杰刽,然后類調(diào)用默認的啟動類
jdk11之后將javafx分離出來,使得用jdk11執(zhí)行javafx時很容易出問題王滤。
右鍵src--New--Java Class--Main
Main.java
import javafx.application.Application;
/**
* @Classname Main
* @Desciption 調(diào)用默認的啟動類
* @Date 2021/06/27
* @Created Robin
*/
public class Main {
public static void main(String[] args) {
Application.launch(Test.class);
}
}
五贺嫂、運行
在Main.java打開的源碼界面中點擊右鍵--Run 'Main.main()'
demo1的運行界面
demo2的運行界面
六、補充
創(chuàng)建Test3.java
import javafx.application.Application;
import javafx.geometry.Insets;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.control.TextArea;
import javafx.scene.layout.FlowPane;
import javafx.stage.Stage;
public class Test3 extends Application {
@Override
public void start(Stage primaryStage) throws Exception {
FlowPane root = new FlowPane();
root.setHgap(5);
root.setVgap(5);
root.setPadding(new Insets(15,15,15,15));
// Button 1
Button button1= new Button("文件(F)");
root.getChildren().add(button1);
// Button 2
Button button2 = new Button("編輯(E)");
root.getChildren().add(button2);
// Button 3
Button button3 = new Button("格式(O)");
root.getChildren().add(button3);
// Button 4
Button button4 = new Button("查看(V)");
root.getChildren().add(button4);
// Button 5
Button button5 = new Button("幫助(H)");
root.getChildren().add(button5);
// TextField
TextArea textArea = new TextArea(null);
textArea.setPrefWidth(520);
textArea.setPrefHeight(500);
textArea.setWrapText(true);
root.getChildren().add(textArea);
Scene scene = new Scene(root, 550, 550);
primaryStage.setTitle("新建文本文檔.txt - 記事本");
primaryStage.setScene(scene);
primaryStage.show();
}
public static void main(String[] args) {
launch(args);
}
}
對應(yīng)修改Main.java的Application.launch()
的傳入的類為Test3.class
import javafx.application.Application;
/**
* @Classname Main
* @Desciption TODO
* @Date 2021/06/27
* @Created Robin
*/
public class Main {
public static void main(String[] args) {
Application.launch(Test3.class);
}
}
打開Main.java源碼文件雁乡,右鍵運行Main.main()