當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


JavaFX 類 HTMLEditor用法及代碼示例


HTMLEditor類是JavaFX的一部分。 HTMLEditor允許用戶編輯現有的HTML文本,還可以對文本應用樣式。基礎數據模型是HTML,但對用戶不可見。

該類的構造函數:

  • HTMLEditor():創建HTMLEditor的新對象。

常用方法:


方法 說明
getHtmlText() 返回編輯器的HTML內容。
print(PrinterJob j) 使用給定的打印機作業打印編輯器的內容。
setHtmlText(String h) 設置編輯器的HTML文本。

以下示例程序旨在說明HTMLEditor類的用法:

  1. Java程序創建一個HTMLEditor並添加到該階段:在此程序中,我們將創建一個名為htmleditor的HTMLEditor。我們還將創建一個名為tilepane的TilePane,然後使用getChildren().add()函數將htmleditor添加到tilepane中。我們將創建一個場景並向其中添加平鋪窗格。我們將使用setScene()函數將場景添加到舞台,並使用show()函數顯示舞台以顯示最終結果。
    // Java program to create a html editor 
    // and add to the stage 
    import javafx.application.Application; 
    import javafx.scene.Scene; 
    import javafx.scene.layout.*; 
    import javafx.stage.Stage; 
    import javafx.scene.web.HTMLEditor; 
      
    public class Editor_1 extends Application { 
      
        // launch the application 
        public void start(Stage stage) 
        { 
      
            // set title for the stage 
            stage.setTitle("Creating HTMLEditor"); 
      
            // create a tile pane 
            TilePane tilepane = new TilePane(); 
      
            // HTML editor 
            HTMLEditor htmleditor = new HTMLEditor(); 
      
            // add html editor 
            tilepane.getChildren().add(htmleditor); 
      
            // create a scene 
            Scene scene = new Scene(tilepane, 600, 500); 
      
            // set the scene 
            stage.setScene(scene); 
      
            stage.show(); 
        } 
      
        // Main Method 
        public static void main(String args[]) 
        { 
      
            // launch the application 
            launch(args); 
        } 
    }

    輸出:

  2. Java程序,用於創建HTMLEditor並為其設置初始HTML文本並添加到舞台:在此程序中,我們將創建一個名為htmleditor的HTMLEditor。我們將使用setHtmlText()函數設置初始HTML文本。我們還將創建一個名為tilepane的TilePane,並使用getChildren().add()函數將htmleditor添加到tilepane中。我們將創建一個場景並向其中添加平鋪窗格。我們將使用setScene()函數將場景添加到舞台,並使用show()函數顯示舞台以顯示最終結果。
    // Java program to create a html editor  
    // and set initial HTML text to it and  
    // add to the stage 
    import javafx.application.Application; 
    import javafx.scene.Scene; 
    import javafx.scene.layout.*; 
    import javafx.stage.Stage; 
    import javafx.scene.web.HTMLEditor; 
       
    public class Editor_2 extends Application { 
       
        // launch the application 
        public void start(Stage stage) 
        { 
       
            // set title for the stage 
            stage.setTitle("creating HTMLEditor"); 
       
            // HTML text 
            String text = "<html><body><h1>Geeks</h1></body></html>"; 
       
            // create a tile pane 
            TilePane tilepane = new TilePane(); 
       
            // HTML editor 
            HTMLEditor htmleditor = new HTMLEditor(); 
       
            // set html text 
            htmleditor.setHtmlText(text); 
       
            // add html editor 
            tilepane.getChildren().add(htmleditor); 
       
            // create a scene 
            Scene scene = new Scene(tilepane, 600, 500); 
       
            // set the scene 
            stage.setScene(scene); 
       
            stage.show(); 
        } 
       
        // Main Method 
        public static void main(String args[]) 
        { 
       
            // launch the application 
            launch(args); 
        } 
    }

    輸出:

注意:以上程序可能無法在在線IDE中運行。請使用離線編譯器。

參考:https://docs.oracle.com/javase/8/javafx/api/javafx/scene/web/HTMLEditor.html



相關用法


注:本文由純淨天空篩選整理自andrew1234大神的英文原創作品 JavaFX | HTMLEditor Class。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。