使用DirectoryChooser将选定的文件夹保存到我的数据库中

时间:2018-10-06 09:44:19

标签: java

我正在开发一个应用程序,该程序需要我从系统中选择一个文件夹并将其保存到数据库中。我已经可以使用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());
    }
}

0 个答案:

没有答案