Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经在 Google 上查找了一段时间,但我似乎无法找到或记得如何使用URL. 这真的让我很沮丧。我觉得应该是这样的:
URL
URL url = new URL("C:\\Users\\Austin\\Desktop\\hi.gif");
但这只是行不通。我相信我应该放一些东西,new URL但我找不到它。我已经尝试了所有我能想到的搜索词。
new URL
如何将文件路径String转换为URL?
String
// There are better ways to specify file paths, BNI. File f = new File("C:\\Users\\Austin\\Desktop\\hi.gif"); URL url = f.toURI().toURL();