我正在尝试在我的框架中添加一个谷歌地图,我在这里读到最好的方法是打开一个 URL,所以,我做了:
JTextPane myMap = new JTextPane();
JScrollPane scroll = new JScrollPane();
scroll.getViewport().add(myMap);
scroll.setBounds(40,240,1200,644);
background.add(scroll);
try{
URL url = getClass().getResource("/html/maps.html");
myMap.setPage(url);
} catch (Exception e) {
e.printStackTrace();
}
但是我什么也看不到,如果我使用 helloWorld.html 而不是 maps.htm 我会看到内容。
为什么会这样?
先感谢您