자바 이클립스 GUI로 청기백기게임을 만드는데 문제점이 있습니다.

didgusals123의 이미지

import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
import java.util.*;
import javax.swing.JOptionPane;
import java.util.Random;
 
class BWFlag extends JFrame{
	ImageIcon [] bw = { new ImageIcon("images/0.jpg"),
				    	new ImageIcon("images/1.jpg"),
			            new ImageIcon("images/2.jpg"),
			            new ImageIcon("images/3.jpg") // 방향 버튼 이미지 구현
	};
	MainPanel mainpanel = new MainPanel();
	JButton[] bwbt = new JButton[4];
	JLabel label = new JLabel();
	MyActionListener lis = new MyActionListener(); // 버튼을 클릭했을 때 이벤트
 
	BWFlag(){ // 생성자
		setTitle("청기백기게임");
		setSize(600,800);
		setVisible(true);
		setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
 
		add(mainpanel);
		for(int i=0; i<bwbt.length; i++){ // 버튼 4개 달아줌
			bwbt[i] = new JButton(bw[i]);
			mainpanel.add(bwbt[i]);
			bwbt[i].addActionListener(lis);
		}
		mainpanel.add(label);
 
	}
 
	class MainPanel extends JPanel{ // 청기백기게임 메인 이미지 그려줌
		ImageIcon main = new ImageIcon("images/mainicon.jpg");
		Image img = main.getImage();
		public void paintComponent(Graphics g){
			super.paintComponent(g);
			g.drawImage(img, 40, 140, this);
		}			
	}
 
	public class MyActionListener implements ActionListener{ // 버튼 클릭했을 경우
		public void actionPerformed(ActionEvent e) {			
			JButton ebt  = (JButton)e.getSource();
			int game = (int)(Math.random()*4);
 
			switch(game){
			case 0 : // 청기 올려!
				label.setText("청기 올려!");
				if(e.getSource() == bwbt[0]){
					JOptionPane.showMessageDialog(null, "Pass!!!", "Message", JOptionPane.INFORMATION_MESSAGE, null);
				}
				else{
					JOptionPane.showMessageDialog(null, "Fail!!!", "Message", JOptionPane.WARNING_MESSAGE, null);
				}
				break;
			case 1 : // 청기 내려!
				label.setText("청기 내려!");
				if(e.getSource() == bwbt[1]){
					JOptionPane.showMessageDialog(null, "Pass!!!", "Message", JOptionPane.INFORMATION_MESSAGE, null);
				}
				else{
					JOptionPane.showMessageDialog(null, "Fail!!!", "Message", JOptionPane.WARNING_MESSAGE, null);
				}
				break;
 
			case 2 : // 청기 내려!
				label.setText("백기 올려!");
				if(e.getSource() == bwbt[2]){
					JOptionPane.showMessageDialog(null, "Pass!!!", "Message", JOptionPane.INFORMATION_MESSAGE, null);
				}
				else{
					JOptionPane.showMessageDialog(null, "Fail!!!", "Message", JOptionPane.WARNING_MESSAGE, null);
				}
				break;
 
			case 3 : // 청기 내려!
				label.setText("백기 내려!");
				if(e.getSource() == bwbt[3]){
					JOptionPane.showMessageDialog(null, "Pass!!!", "Message", JOptionPane.INFORMATION_MESSAGE, null);
				}
				else{
					JOptionPane.showMessageDialog(null, "Fail!!!", "Message", JOptionPane.WARNING_MESSAGE, null);
				}			
				break;				
			}
		}		
	}
}
 
public class BWGame {
	public static void main(String[] args){
		BWFlag b = new BWFlag();
	}
}

------------------------------------------------------------------------------------------------------------------
제가 작성해본 코든데 버튼을 누를 때 임의의 명령어가 출력되더라구요...

임의의 명령어를 JLabel로 출력하고 그거에 맞는 버튼을 클릭할 수 있게하는 방법이 없을까요?

있다면 간단한 예제도 들어주시면 감사하겠습니다.

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.