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();