我的主要课程(扩展小程序)正在显示一个带有绝对路径的图像,但我不知道如何让它从我的html所在的文件夹中获取路径。
try {
tutorial2 = TextureLoader.getTexture("PNG", new FileInputStream(
new File("D:/eclipse/workspace/Final/res/tutorial2.png")));
} catch (IOException e) {
e.printStackTrace();
System.err.println("Nu s-a gasit imaginea");
}
但是我的html小程序在另一个目录中,我想在你移动html时仍然可以查看图像。
答案 0 :(得分:0)
复制图像(tutorial2.png)并将该图像粘贴到保存上述类的文件夹中,然后执行此操作
tutorial2 = TextureLoader.getTexture("PNG", new FileInputStream(
new File("tutorial2.png")));