javafx HTMLEditor中的Html源代码

时间:2015-05-04 09:05:51

标签: java html javafx javafx-8 fxml

有没有办法在源模式下使用javaFx HTMLEditor,就像在firefox中选择show source code一样?

我需要这个,因为我想在编辑器中加载包含xml标签的字符串,并且wigdet没有显示它们。

1 个答案:

答案 0 :(得分:0)

不是HTMLEditor,Webengine或Webview都不包含您需要的方法。我发现的唯一的东西是在不同的textarea中显示html。也许这会对你有帮助。

import javafx.application.Application;
import javafx.event.Event;
import javafx.event.EventType;
import javafx.scene.Scene;
import javafx.scene.control.TextArea;
import javafx.scene.layout.Priority;
import javafx.scene.layout.VBox;
import javafx.scene.web.HTMLEditor;
import javafx.stage.Stage;

public class JavaFXApplication1 extends Application {

  @Override
  public void start(Stage primaryStage) {
    HTMLEditor editor = new HTMLEditor();
    editor.setHtmlText("<html>"
            + "<head>"
            + "<title>A Test</title>"
            + "</head>"
            + "<body>This is just a Test</body>"
            + "</html>");

    TextArea area = new TextArea();
    area.setText(editor.getHtmlText());
    editor.addEventHandler(EventType.ROOT, (Event event) -> {
      area.setText(editor.getHtmlText());
    });

    VBox root = new VBox();
    VBox.setVgrow(area, Priority.ALWAYS);
    root.getChildren().addAll(editor, area);

    Scene scene = new Scene(root, 300, 250);

    primaryStage.setScene(scene);
    primaryStage.show();
  }

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