以下のコードを使用して、Java から cmd コマンドを実行しました (コードはhereから採用) 。
private static void execute(File file){
try {
String[] command =
{
"cmd",
};
Process p = Runtime.getRuntime().exec(command);
new Thread(new SyncPipe(p.getErrorStream(), System.err)).start();
new Thread(new SyncPipe(p.getInputStream(), System.out)).start();
PrintWriter stdin = new PrintWriter(p.getOutputStream());
stdin.println("cd " + file.getParent());
stdin.println("gxm -execute " + file.getPath());
// write any other commands you want here
stdin.close();
int returnCode = p.waitFor();
System.out.println("Return code = " + returnCode);
}catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
SyncPipe クラス:
class SyncPipe implements Runnable
{
public SyncPipe(InputStream istrm, OutputStream ostrm) {
istrm_ = istrm;
ostrm_ = ostrm;
}
public void run() {
try
{
final byte[] buffer = new byte[1024];
for (int length = 0; (length = istrm_.read(buffer)) != -1; )
{
ostrm_.write(buffer, 0, length);
}
}
catch (Exception e)
{
e.printStackTrace();
}
}
private final OutputStream ostrm_;
private final InputStream istrm_;
}
このコードは正常に動作し、実行結果は というファイルになりますCOMPLETED
が、そのファイルをチェックして実行が終了したことを示す次のメソッドを実装しました。
private static boolean checkFinished(String path)
{
boolean result = false;
String directory = path + "\\expts";
File dir = new File(directory);
if(dir.isDirectory())
while(!result)
{
for(File f: dir.listFiles())
if(!f.isDirectory() && "__COMPLETED__".equals(f.getName()))
{
result = true;
break;
}
if(!result)
try {
Thread.sleep(3000);
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
System.out.println(result);
return result;
}
しかし、次のようにメインメソッドでこれらのメソッドを呼び出すと:
File f = new File("C:\\inputFile.txt");
execute(f);
System.out.println(checkFinished(f.getParent()));
次の出力が得られます。
false // printed from the checking
Microsoft Windows [Version 6.1.7601]
Copyright (c) 2009 Microsoft Corporation. All rights reserved.
.... // rest of cmd output
ここでの問題は、checkFinshed
メソッドが一度印刷し、後でファイルが既に存在するときに true を印刷することです。コードのどこが間違っていますか?