我正在开发一个应用程序,该程序需要我从系统中选择一个文件夹并将其保存到数据库中。我已经可以使用DirectoryChooser
选择该文件夹,但是我一直坚持将所选文件夹保存到我的数据库中。
此代码是我停止的位置,我想将所选文件夹的所有内容保存到我的数据库中:
private void upload1(MouseEvent event) throws IOException {
final DirectoryChooser dirchooser = new DirectoryChooser();
Stage stage = (Stage) rootPane.getScene().getWindow();
File file = dirchooser.showDialog(stage);
if (file != null) {
path1.setText(file.getAbsolutePath());
}
}