Java 使用按钮启动/停止Windows服务

Java 使用按钮启动/停止Windows服务,java,swing,processbuilder,Java,Swing,Processbuilder,我正在创建一个非常简单的应用程序来停止和启动windows服务。我需要它有一个GUI界面,所以我选择JAVA。如果你懂更简单的语言,请告诉我。作为一个例子,我希望它停止和启动打印后台处理程序。我已经使用NetBeans创建了GUI界面,但是我需要有关编码部分的帮助。请帮忙。谢谢 package MyServiceToolPKG; public class MyServiceToolGUI extends javax.swing.JFrame { /** * Creates new form

我正在创建一个非常简单的应用程序来停止和启动windows服务。我需要它有一个GUI界面,所以我选择JAVA。如果你懂更简单的语言,请告诉我。作为一个例子,我希望它停止和启动打印后台处理程序。我已经使用NetBeans创建了GUI界面,但是我需要有关编码部分的帮助。请帮忙。谢谢

package MyServiceToolPKG;
public class MyServiceToolGUI extends javax.swing.JFrame {

/**
 * Creates new form MyServiceToolGUI
 */
public MyServiceToolGUI() {
    initComponents();
}

/**
 * This method is called from within the constructor to initialize the form.
 * WARNING: Do NOT modify this code. The content of this method is always
 * regenerated by the Form Editor.
 */
@SuppressWarnings("unchecked")
// <editor-fold defaultstate="collapsed" desc="Generated Code">                          
private void initComponents() {

    StartButton = new javax.swing.JButton();
    StopButton = new javax.swing.JButton();

    setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);

    StartButton.setText("Start");
    StartButton.addActionListener(new java.awt.event.ActionListener() {
        public void actionPerformed(java.awt.event.ActionEvent evt) {
            StartButtonActionPerformed(evt);
        }
    });

    StopButton.setText("Stop");
    StopButton.addActionListener(new java.awt.event.ActionListener() {
        public void actionPerformed(java.awt.event.ActionEvent evt) {
            StopButtonActionPerformed(evt);
        }
    });

    javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
    getContentPane().setLayout(layout);
    layout.setHorizontalGroup(
        layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
        .addGroup(layout.createSequentialGroup()
            .addGap(19, 19, 19)
            .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addComponent(StopButton)
                .addComponent(StartButton))
            .addContainerGap(26, Short.MAX_VALUE))
    );
    layout.setVerticalGroup(
        layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
        .addGroup(layout.createSequentialGroup()
            .addContainerGap()
            .addComponent(StartButton)
            .addGap(18, 18, 18)
            .addComponent(StopButton)
            .addContainerGap(22, Short.MAX_VALUE))
    );

    pack();
}// </editor-fold>                        

private void StartButtonActionPerformed(java.awt.event.ActionEvent evt) {                                            
    // TODO add your handling code here:
}                                           

private void StopButtonActionPerformed(java.awt.event.ActionEvent evt) {                                           
    // TODO add your handling code here:
}                                          

/**
 * @param args the command line arguments
 */
public static void main(String args[]) {
    /* Set the Nimbus look and feel */
    //<editor-fold defaultstate="collapsed" desc=" Look and feel setting code (optional) ">
    /* If Nimbus (introduced in Java SE 6) is not available, stay with the default look and feel.
     * For details see http://download.oracle.com/javase/tutorial/uiswing/lookandfeel/plaf.html 
     */
    try {
        for (javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels()) {
            if ("Nimbus".equals(info.getName())) {
                javax.swing.UIManager.setLookAndFeel(info.getClassName());
                break;
            }
        }
    } catch (ClassNotFoundException ex) {
        java.util.logging.Logger.getLogger(MyServiceToolGUI.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
    } catch (InstantiationException ex) {
        java.util.logging.Logger.getLogger(MyServiceToolGUI.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
    } catch (IllegalAccessException ex) {
        java.util.logging.Logger.getLogger(MyServiceToolGUI.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
    } catch (javax.swing.UnsupportedLookAndFeelException ex) {
        java.util.logging.Logger.getLogger(MyServiceToolGUI.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
    }
    //</editor-fold>

    /* Create and display the form */
    java.awt.EventQueue.invokeLater(new Runnable() {
        public void run() {
            new MyServiceToolGUI().setVisible(true);
        }
    });
}

// Variables declaration - do not modify                     
private javax.swing.JButton StartButton;
private javax.swing.JButton StopButton;
// End of variables declaration                   
谢谢大家

这是我的代码:

private void StopSpooler() {
    String[] args = {"stop"};
    String[] command = {"cmd.exe", "/c", "sc", args[0], "spooler"};
    try {
      Process process = new ProcessBuilder(command).start();
      InputStream inputStream = process.getInputStream();
      InputStreamReader inputStreamReader = new InputStreamReader(inputStream);
      BufferedReader bufferedReader = new BufferedReader(inputStreamReader);
      String line;
      while ((line = bufferedReader.readLine()) != null) {
         System.out.println(line);
      }
    } catch(Exception ex) {
      System.out.println("Exception : "+ex);
    }
}

private void StartSpooler() {
    String[] args = {"start"};
    String[] command = {"cmd.exe", "/c", "sc", args[0], "spooler"};
    try {
      Process process = new ProcessBuilder(command).start();
      InputStream inputStream = process.getInputStream();
      InputStreamReader inputStreamReader = new InputStreamReader(inputStream);
      BufferedReader bufferedReader = new BufferedReader(inputStreamReader);
      String line;
      while ((line = bufferedReader.readLine()) != null) {
         System.out.println(line);
      }
    } catch(Exception ex) {
      System.out.println("Exception : "+ex);
    }
}
我创建了一个批处理文件,作为管理员运行,并调用jar应用程序

@echo off
java.exe -jar C:\test\MyServiceTool.jar
pause
在Windows命令行中: 您需要管理员权限才能执行此操作。 要停止windows服务,请执行以下操作:

net stop Spooler
net start Spooler
要启动windows服务,请执行以下操作:

net stop Spooler
net start Spooler
在Java中,您可以使用以下命令执行dos命令:

try {
        Runtime.getRuntime().exec("net stop spooler");
    } catch (IOException ex) {
        JOptionPane.showMessageDialog(null, ex.getMessage());
    }

“……但我需要有关编码部分的帮助。”
——这不是一个真正的问题。请提出一个可回答的具体问题。我如何停止和启动windows服务?
ProcessBuilder
将是更好的解决方案。确定,我使用了ProcessBuilder,但访问被拒绝。有什么建议吗?运行:[SC]OpenService失败5:访问被拒绝。[SC]StartService:OpenService失败5:访问被拒绝。失败5表示程序未在管理员模式下运行。如何以管理员身份运行java程序?我右键单击时没有选项。