1
int reval = fcCari.showOpenDialog(this);
String sourcePath = fcCari.getSelectedFile().getAbsolutePath();
String targetPath = "C:\\Users\\nadzar\\Downloads\\Compressed\\JavaSQLite\\resource\\";
    targetPath += fcCari.getSelectedFile().getName();
    if ((reval == JFileChooser.APPROVE_OPTION)) {
            File source = new File(sourcePath);
            File target = new File(targetPath);
            copyFile(source, target);
            targetPathFoto=targetPath;
            tambahFoto(targetPathFoto);
    }
    else{
        JOptionPane.showMessageDialog(rootPane, "Batal Menambahkan Foto");
        tambahFoto(this.targetFoto);
    }
    System.out.println(targetPathFoto);

如果我的项目已移动,则必须更改路径。我问我的项目目录发生变化时目标路径如何变化?

4

1 回答 1

0

为此使用属性文件,您需要做的是更改属性值。

# app home, build absolute paths in code using this path
app.home=path_to_home_directory

使用java.util.Properties读取这些属性。

请参阅mkyong中的示例。

于 2013-01-03T06:33:24.013 回答