避免关机钩子

时间:2010-04-24 14:33:33

标签: java

通过以下代码我可以播放和剪切和音频文件。 有没有其他方法可以避免使用关机钩子? 问题是每当我按下剪切按钮时,在关闭应用程序之前文件都不会被保存

谢谢

void play_cut() {

        try {

    // First, we get the format of the input file
    final AudioFileFormat.Type fileType = AudioSystem.getAudioFileFormat(inputAudio).getType();
    // Then, we get a clip for playing the audio.
    c = AudioSystem.getClip();
    // We get a stream for playing the input file.
    AudioInputStream ais = AudioSystem.getAudioInputStream(inputAudio);
    // We use the clip to open (but not start) the input stream
    c.open(ais);
    // We get the format of the audio codec (not the file format we got above)
    final AudioFormat audioFormat = ais.getFormat();

     // We add a shutdown hook, an anonymous inner class.
    Runtime.getRuntime().addShutdownHook(new Thread()
    {
      public void run()
      {
        // We're now in the hook, which means the program is shutting down.
        // You would need to use better exception handling in a production application.
        try
        {
          // Stop the audio clip.
          c.stop();
          // Create a new input stream, with the duration set to the frame count we reached.  Note that we use the previously determined audio format
          AudioInputStream startStream = new AudioInputStream(new FileInputStream(inputAudio), audioFormat, c.getLongFramePosition());
          // Write it out to the output file, using the same file type.
          AudioSystem.write(startStream, fileType, outputAudio);
        }
        catch(IOException e)
        {
          e.printStackTrace();
        }
      }
    });
    // After setting up the hook, we start the clip.


     c.start();

        } catch (UnsupportedAudioFileException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        } catch (LineUnavailableException e) {
            e.printStackTrace();
        }
    }// end play_cut

实际上,我想知道的是: 我真的需要关机钩吗?

如果我移动这两个代码语句

AudioInputStream startStream = new AudioInputStream(new FileInputStream(inputAudio), audioFormat, c.getLongFramePosition());
AudioSystem.write(startStream, fileType, outputAudio);

c.start()之后的其他地方;我收到一个错误:

  

异常java.io.IOException永远不会在相应的try语句的主体中抛出 - > catch(IOException e)

你认为我可以在不诉诸钩子的情况下得到相同的结果吗?

1 个答案:

答案 0 :(得分:1)

首先,您的所有评论都是完全多余的,您只需重复您正在使用的各种类和方法的名称。

至于问题,你的保存代码是在关闭钩子中,这意味着“当应用程序即将关闭时执行此操作”这自然意味着它将不会保存到程序之前即将关闭。所以,将这个逻辑从关闭钩子转移到它的逻辑位置 - 最有可能在方法结束时,可能在final阻止偶数 - 就是这样。