⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 frame1.java

📁 可以对windows自带的程序进行控制执行!
💻 JAVA
字号:
package excutepro;import java.awt.*;import java.awt.event.*;import javax.swing.*;import java.io.*;import java.lang.*;public class Frame1 extends JFrame {  JPanel contentPane;  FlowLayout flowLayout1 = new FlowLayout();  Button button1 = new Button();  Button button2 = new Button();  Button button3 = new Button();  Button button4 = new Button();  /**Construct the frame*/  public Frame1() {    enableEvents(AWTEvent.WINDOW_EVENT_MASK);    try {      jbInit();    }    catch(Exception e) {      e.printStackTrace();    }  }  /**Component initialization*/  private void jbInit() throws Exception  {    //setIconImage(Toolkit.getDefaultToolkit().createImage(Frame1.class.getResource("[Your Icon]")));    contentPane = (JPanel) this.getContentPane();    button1.setLabel("记事本");    button1.addActionListener(new java.awt.event.ActionListener() {      public void actionPerformed(ActionEvent e) {        button1_actionPerformed(e);      }    });    contentPane.setLayout(flowLayout1);    this.setResizable(false);    this.setSize(new Dimension(223, 136));    this.setTitle("Excute Program");    flowLayout1.setHgap(30);    flowLayout1.setVgap(20);    button2.setLabel("画   图");    button2.addActionListener(new java.awt.event.ActionListener() {      public void actionPerformed(ActionEvent e) {        button2_actionPerformed(e);      }    });    button3.setLabel("计算器");    button3.addActionListener(new java.awt.event.ActionListener() {      public void actionPerformed(ActionEvent e) {        button3_actionPerformed(e);      }    });    button4.setLabel("写字板");    button4.addActionListener(new java.awt.event.ActionListener() {      public void actionPerformed(ActionEvent e) {        button4_actionPerformed(e);      }    });    contentPane.add(button1, null);    contentPane.add(button2, null);    contentPane.add(button3, null);    contentPane.add(button4, null);  }  /**Overridden so we can exit when window is closed*/  protected void processWindowEvent(WindowEvent e) {    super.processWindowEvent(e);    if (e.getID() == WindowEvent.WINDOW_CLOSING) {      System.exit(0);    }  }  void button1_actionPerformed(ActionEvent e) {    try{      String command = "notepad.exe";      Process child = Runtime.getRuntime().exec(command);     }     catch (IOException ex)     {     }  }  void button2_actionPerformed(ActionEvent e) {    try{      String command = "C:\\Program Files\\Accessories\\MSPAINT.EXE";      Process child = Runtime.getRuntime().exec(command);     }     catch (IOException ex)     {     }  }  void button3_actionPerformed(ActionEvent e) {    try{      String command = "calc.exe";      Process child = Runtime.getRuntime().exec(command);     }     catch (IOException ex)     {     }  }  void button4_actionPerformed(ActionEvent e) {    try{      String command = "C:\\Program Files\\Accessories\\WORDPAD.EXE";      Process child = Runtime.getRuntime().exec(command);     }     catch (IOException ex)     {     }  }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -