コンソールにメッセージを表示するか、ポップアップで表示したいので、パラメータが指定されていない場合、どちらに表示すればよいか知りたい
何かのようなもの:
if( !file.exists() ) {
if( fromCommandLine()){
System.out.println("File doesn't exists");
}else if ( fromDoubleClickOnJar() ) {
JOptionPane.showMessage(null, "File doesn't exists");
}
}