gpt4 book ai didi

java - 从无法在 Windows 上运行的资源加载图像

转载 作者:行者123 更新时间:2023-12-02 08:16:26 24 4
gpt4 key购买 nike

为什么这在 Windows 上不起作用,而在 Mac 上起作用?

public final static String PATH = "resources" + File.separator;

/** Returns an ImageIcon, or null if the path was invalid. */
public static ImageIcon createImageIcon(String name, String description) {
java.net.URL imgURL = GuiTools.class.getResource(PATH + name);
if (imgURL != null) {
return new ImageIcon(imgURL, description);
} else {
System.err.println("Couldn't find file: " + PATH + name);
return null;
}
}

最佳答案

因为File.separator是文件的系统相关字符,对于mac是“/”,对于windows是“\”。但是,在 URL 中,所有分隔符都应为“/”。尝试将第一行更改为:

public final static String PATH = "resources/";

关于java - 从无法在 Windows 上运行的资源加载图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6316377/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com