如题我想把html呈现在JEditorPane上面,html存在java专案的目录当中为map.html
但我尝试了很多次,结果都是没有显示任何东西
但把url改为google网址则可以显示结果。
以下是我的code,可以告诉我哪个部分出错了吗@@
sPath = System.getProperty( "user.dir" ) + "/";
URL url=new URL("File:///"+sPath+"map.html");
editorPane = new JEditorPane();
scrollPane.setViewportView(editorPane);
editorPane.setContentType("text/html");
editorPane.setEditable(false);
editorPane.setPage(url);