0

マイコード

import java.awt.*; 
 import javax.swing.*; 

 // Create a simple GUI window
 public class TopLevelWindow {

    private static void createWindow() {

       //Create and set up the window. 
       JFrame frame = new JFrame("Simple GUI");
       frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); 

       JLabel textLabel = new JLabel("I'm a label in the window",SwingConstants.CENTER); 
       textLabel.setPreferredSize(new Dimension(300, 100)); 
       frame.getContentPane().add(textLabel, BorderLayout.CENTER); 

       //Display the window. 
       frame.setLocationRelativeTo(null); 
       frame.pack();
       frame.setVisible(true); 
    }

    public static void main(String[] args) {

       createWindow();

    }
 } 

そして、例外を除いてプログラムを実行する方法は ここに画像の説明を入力

4

1 に答える 1