我正在程序中使用URL
类来加载位图图像,我想知道Java是否会识别../
以退出当前目录,如CSS和HTML,或者还有另一种方法可以做到这一点。
以下是用于说明我的问题的代码段:
zombieOneRight = Zkit.getImage(getURL("../_images/_production_images/zombie_1_right_75h.png")); // will the ../ work here
private URL getURL(String filename)
{
URL url = null;
try
{
url = this.getClass().getResource(filename);
}
catch (Exception e) {}
return url;
}
答案 0 :(得分:0)