JavaFX超鏈接
Hyperlink
類表示類似於JavaFX的網頁上的錨鏈接的超鏈接。
import javafx.application.Application;
import javafx.scene.Group;
import javafx.scene.Scene;
import javafx.scene.control.Hyperlink;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
public class Main extends Application {
@Override
public void start(Stage stage) {
stage.setTitle("HTML");
stage.setWidth(500);
stage.setHeight(500);
Scene scene = new Scene(new Group());
VBox root = new VBox();
Hyperlink link = new Hyperlink("www.1ju.org");
root.getChildren().addAll(link);
scene.setRoot(root);
stage.setScene(scene);
stage.show();
}
public static void main(String[] args) {
launch(args);
}
}
上面的代碼生成以下結果。
創建超鏈接
以下代碼使用默認構造函數創建超鏈接對象。然後它設置一個URL
作爲文本標題,最後添加點擊事件處理程序。
Hyperlink link = new Hyperlink();
link.setText("https://www.1ju.org");
link.setOnAction((ActionEvent e) -> {
System.out.println("This link is clicked");
});
setText
實例方法定義超鏈接的文本標題。超鏈接類擴展了Labeled
類,可以爲超鏈接設置字體和填充。
以下代碼將圖像添加到超鏈接控件。
Hyperlink hpl = new Hyperlink("www.1ju.org");
Image image1 = new Image(new File("a.jpg").toURI().toString(), 0, 100, false, false);
hpl.setGraphic(new ImageView (image1));
示例
更改超鏈接的字體,如下代碼所示 -
import java.io.File;
import javafx.application.Application;
import javafx.scene.Group;
import javafx.scene.Scene;
import javafx.scene.control.Hyperlink;
import javafx.scene.image.Image;
import javafx.scene.image.ImageView;
import javafx.scene.layout.VBox;
import javafx.scene.text.Font;
import javafx.stage.Stage;
public class Main extends Application {
@Override
public void start(Stage stage) {
stage.setTitle("HTML");
stage.setWidth(500);
stage.setHeight(500);
Scene scene = new Scene(new Group());
VBox root = new VBox();
Hyperlink hpl = new Hyperlink("www.1ju.org");
hpl.setFont(Font.font("Arial", 14));
root.getChildren().addAll(hpl);
scene.setRoot(root);
stage.setScene(scene);
stage.show();
}
public static void main(String[] args) {
launch(args);
}
}
上面的代碼生成以下結果。