以下は私のコードです。すべて順調。リモートページをロードできます。HTML コンテンツを配置できますが、img
タグにX記号が表示され、画像を読み込めません。
注:私の画像は、フォルダー Smiley 内のクラスと共に同じパッケージにありJavaFX
、パスに問題がないことを意味するすべての画像を一覧表示できます。
import java.awt.BorderLayout;
import java.io.File;
import javafx.application.Platform;
import javafx.embed.swing.JFXPanel;
import javafx.scene.Group;
import javafx.scene.Scene;
import javafx.scene.web.WebEngine;
import javafx.scene.web.WebView;
import javax.swing.JFrame;
import javax.swing.SwingUtilities;
public class JavaFX {
static WebView webView;
static WebEngine webEngine;
static String imgs = "";
public JavaFX() {
File f = new File(getClass().getResource("/Smiley").getFile());
for (File fs : f.listFiles()) {
imgs += "<img src=\""+fs+"\" width='50' />";
}
System.out.println(imgs);
}
private void initAndShowGUI() {
// This method is invoked on Swing thread
JFrame frame = new JFrame("FX");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.getContentPane().setLayout(new BorderLayout());
final JFXPanel fxPanel = new JFXPanel();
frame.add(fxPanel, BorderLayout.CENTER);
frame.setVisible(true);
frame.setSize(800, 800);
Platform.runLater(new Runnable() {
@Override
public void run() {
initFX(fxPanel);
}
});
}
private void initFX(final JFXPanel fxPanel) {
Group group = new Group();
Scene scene = new Scene(group);
fxPanel.setScene(scene);
webView = new WebView();
group.getChildren().add(webView);
webEngine = webView.getEngine();
webEngine.loadContent("<div id='content'>"+imgs+"</div>");
}
public static void main(final String[] args) {
SwingUtilities.invokeLater(new Runnable() {
@Override
public void run() {
JavaFX fx = new JavaFX();
fx.initAndShowGUI();
}
});
}
}
以下が出力されます