Windows服务中的无限循环

时间:2012-07-17 16:05:04

标签: java windows-services

我有一个奇怪的问题,我的麦克风时不时地自我静音。所以我决定写一个Windows服务,如果它静音就会取消静音。以下是所有代码:

import javax.sound.sampled.*;

public class Unmute
{
    public static void main(String[] args)
    {
        unmute();
    }

    public static void unmute() {
        Line.Info[] thisLineArr;
        Line.Info thisLineInfo;
        Line thisLine;
        BooleanControl mute;
        Mixer.Info[] infos = AudioSystem.getMixerInfo();
        try {
            while (true) {          
                for (Mixer.Info info: infos)  
                {  
                    Mixer mixer = AudioSystem.getMixer(info);
                    if (mixer.isLineSupported(Port.Info.MICROPHONE))  
                    {  
                        thisLineArr = mixer.getTargetLineInfo();              
                        thisLineInfo = thisLineArr[0];
                        thisLine = mixer.getLine(thisLineInfo);
                        thisLine.open();
                        for (Control thisControl : thisLine.getControls()) {
                            if (thisControl.getType().equals(BooleanControl.Type.MUTE)) {
                                mute = (BooleanControl)thisLine.getControl(BooleanControl.Type.MUTE); 
                                if(mute.getValue()) {
                                    mute.setValue(false);
                                }
                            }
                        }
                        thisLine.close();
                    }  
                }
                Thread.sleep(1 * 1000);
            }
        } catch (Exception e) {
            System.out.println(e);
        }

    }

}

我使用Java Service Wrapper并将此代码作为服务安装。一切都很好,但困扰我的是我在主函数中的无限循环。有一个ifinite循环还是有更好的解决方案可以解决我的问题吗?

0 个答案:

没有答案