どこかにテキストファイルを作成する簡単なJavaプログラムを作りたいです。ユーザーがフォルダを選択できるようにしたい。しかし、それをjarファイルにラップして他の人に送ると。私の友人がそれを実行するたびに、フォルダーを要求します。どうすればjarファイルに1回だけ要求させ、それを最終として設定できるのだろうか。私の.javaファイルの中には、次のようなものがあります
public void setDefaultFolder() {
//initially path is empty string
if(fc.getPath().equals("")){
String a = JOptionPane.showInputDialog("Please select a default folder." +
" Make sure it exists and it's not changeable once set");
if(a != null) {
String b = a.replace("\\","\\\\");
// set String path = something users enter
// fc is a helper object. I have all the read/write file or other methods
// there. I want to let the jar file read the path only for the first time
// and set the path final, later on, when it detects path is not empty
// string, it stops asking users to type in path.
fc.setPath(b);
}
else {
JOptionPane.showMessageDialog(null, "Folder not set");
}
}
}