如題我想把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);