3

Windows プラットフォームで Java プログラムを作成しています。特定のファイルを zip アーカイブに圧縮する必要があります。ProcessBuilder を使用して、新しい 7zip プロセスを開始しています。

ProcessBuilder processBuilder = new ProcessBuilder("7Z","a",zipPath,filePath);
Process p = processBuilder.start();
p.waitFor();

問題は、完了後に 7zip プロセスが終了しないことです。必要なzipファイルを作成しますが、その後はそこにハングアップします。これは、waitFor()呼び出しが返されず、プログラムが動かなくなることを意味します。修正または回避策を提案してください。

4

1 に答える 1

2

これが私がやったことです。

環境変数を設定できないため、7zip の c: パスを設定する必要がありました。

    public void zipMultipleFiles (List<file> Files, String destinationFile){
        String zipApplication = "\"C:\\Program Files\7Zip\7zip.exe\" a -t7z"; 
        String CommandToZip = zipApplication + " ";    
        for (File file : files){
           CommandToZip = CommandToZip + "\"" + file.getAbsolutePath() + "\" ";
        }
        CommandToZip = CommandToZip + " -mmt -mx5 -aoa";
        runCommand(CommandToZip);
    }

    public void runCommand(String commandToRun) throws RuntimeException{
        Process p = null;
        try{
            p = Runtime.getRuntime().exec(commandToRun);
            String response = convertStreamToStr(p.getInputStream());
            p.waitFor();
        } catch(Exception e){
            throw new RuntimeException("Illegal Command ZippingFile");
        } finally {
            if(p = null){
                throw new RuntimeException("Illegal Command Zipping File");
            }
            if (p.exitValue() != 0){
                throw new Runtime("Failed to Zip File - unknown error");
            }
        }
    }

文字列への変換関数はここにあります。これは私が参照として使用したものです。http://singztechmusings.wordpress.com/2011/06/21/getting-started-with-javas-processbuilder-a-sample-utility-class-to-interact-with-linux-from-Java-program/

于 2011-12-12T21:52:42.377 に答える