jxMap在browser.loadURL调用时默认文件夹在哪里?

时间:2016-04-13 05:14:55

标签: java netbeans jxbrowser

我按照教程进行操作 https://jxbrowser.support.teamdev.com/support/solutions/articles/9000012874-google-maps

我已经创建了2个文件。

1.map.html

2.GoogleMapsSample.java

当我运行程序时,我收到错误"找不到此网页"。我认为这是因为代码

browser.loadURL("map.html");

当我更改" map.html"进入" http://www.google.com"它在工作。

所以,我的问题是我必须把map.html放在哪里?

我已经尝试过放入root项目,同样的包没有用。

我使用netbean 8.1

谢谢你。

1 个答案:

答案 0 :(得分:1)

遵循此post,您可能需要添加文件路径。

  

browser.loadURL( “C:\\ map.html”);

如果仍然无效。