JavaFX | HTMLEditor Class

HTMLEditor class is a part of JavaFX. HTMLEditor allows the user to edit the existing HTML text and also apply styling to the text. The underlying data model is HTML but it is not visible to the user.
Constructor of the class:
- HTMLEditor(): Creates a new object of HTMLEditor.
Commonly Used Methods:
| Method | Explanation |
|---|---|
| getHtmlText() | Returns the HTML content of the editor. |
| print(PrinterJob j) | Prints the content of the editor using the given printer job. |
| setHtmlText(String h) | Sets the HTML text of the editor. |
Below programs illustrate the use of HTMLEditor class:
- Java program to create a HTMLEditor and add to the stage: In this program we will create a HTMLEditor named htmleditor. We will also create a TilePane named tilepane,and then add the htmleditor to the tilepane using the getChildren().add() function. We will create a scene and add tilepane to it. We will add the scene to the stage using the setScene() function and display the stage using the show() function to display the final results.
// Java program to create a html editor// and add to the stageimportjavafx.application.Application;importjavafx.scene.Scene;importjavafx.scene.layout.*;importjavafx.stage.Stage;importjavafx.scene.web.HTMLEditor;publicclassEditor_1extendsApplication {// launch the applicationpublicvoidstart(Stage stage){// set title for the stagestage.setTitle("Creating HTMLEditor");// create a tile paneTilePane tilepane =newTilePane();// HTML editorHTMLEditor htmleditor =newHTMLEditor();// add html editortilepane.getChildren().add(htmleditor);// create a sceneScene scene =newScene(tilepane,600,500);// set the scenestage.setScene(scene);stage.show();}// Main Methodpublicstaticvoidmain(String args[]){// launch the applicationlaunch(args);}}Output:
- Java program to create a HTMLEditor and set initial HTML text to it and add to the stage: In this program we will create a HTMLEditor named htmleditor. We will set the initial HTML text using setHtmlText() function. We will also create a TilePane named tilepane, we will add the htmleditor to the tilepane using the getChildren().add() function. We will create a scene and add tilepane to it. We will add the scene to the stage using the setScene() function and display the stage using the show() function to display the final results.
// Java program to create a html editor// and set initial HTML text to it and// add to the stageimportjavafx.application.Application;importjavafx.scene.Scene;importjavafx.scene.layout.*;importjavafx.stage.Stage;importjavafx.scene.web.HTMLEditor;publicclassEditor_2extendsApplication {// launch the applicationpublicvoidstart(Stage stage){// set title for the stagestage.setTitle("creating HTMLEditor");// HTML textString text ="<html><body><h1>Geeks</h1></body></html>";// create a tile paneTilePane tilepane =newTilePane();// HTML editorHTMLEditor htmleditor =newHTMLEditor();// set html texthtmleditor.setHtmlText(text);// add html editortilepane.getChildren().add(htmleditor);// create a sceneScene scene =newScene(tilepane,600,500);// set the scenestage.setScene(scene);stage.show();}// Main Methodpublicstaticvoidmain(String args[]){// launch the applicationlaunch(args);}}
Note: The above programs might not run in an online IDE. Please use an offline compiler.
Reference: https://docs.oracle.com/javase/8/javafx/api/javafx/scene/web/HTMLEditor.html




