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.
Java 7 ではNIOなくパッケージを使用していますIOが、JFileChooser ではFileクラスを使用していますgetSelectedFile()が、NIO ではクラスしかありませんPath。NIOでクラスを使用するにはどうすればよいJFileChooserですか?
NIO
IO
File
getSelectedFile()
Path
JFileChooser
yourPath = yourJFileChooser.getSelectedFile().toPath();
Path path = selectedFile.toPath();
これを試して :
File file = Paths.get(URI).toFile();