我的第一个窗口

package com.zy;
import java.awt.Container;
import java.awt.FlowLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.io.IOException;
import javax.swing.JButton;
import javax.swing.JFrame;
public class Windows {
 public static void main(String[] args) {
  
  JFrame f=new JFrame("我的第一个界面");
  f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  JButton btn=new JButton("计算器");
  Container con=f.getContentPane();
  con.setLayout(new FlowLayout());
  
  con.add(btn);
  
  btn.addActionListener(new OpenCalc());
  
  f.setSize(100, 200);
  f.setVisible(true); 
  
  
 }
}
class OpenCalc implements ActionListener{
 @Override
 public void actionPerformed(ActionEvent e) {
  try {
   Runtime.getRuntime().exec("calc");
  } catch (IOException e1) {
  
   e1.printStackTrace();
  }
  
 }

 
 
 
}

我的第一个窗口_第1张图片

你可能感兴趣的:(我的第一个窗口)