Click here to Skip to main content
15,887,272 members
Home / Discussions / Java
   

Java

 
AnswerRe: Tower of hanoi in java Pin
TorstenH.12-Nov-12 0:22
TorstenH.12-Nov-12 0:22 
GeneralRe: Tower of hanoi in java Pin
prog.sidra12-Nov-12 19:58
prog.sidra12-Nov-12 19:58 
QuestionIf element in diagonal is 1 then its unit matrix , else it's not unit matrix Pin
Asad JOgi11-Nov-12 19:26
Asad JOgi11-Nov-12 19:26 
AnswerRe: If element in diagonal is 1 then its unit matrix , else it's not unit matrix Pin
TorstenH.11-Nov-12 21:15
TorstenH.11-Nov-12 21:15 
AnswerRe: If element in diagonal is 1 then its unit matrix , else it's not unit matrix Pin
BobJanova13-Nov-12 0:06
BobJanova13-Nov-12 0:06 
QuestionError show ImageIcon ??? Pin
nghia09t39-Nov-12 19:34
nghia09t39-Nov-12 19:34 
AnswerRe: Error show ImageIcon ??? Pin
Richard MacCutchan9-Nov-12 23:32
mveRichard MacCutchan9-Nov-12 23:32 
AnswerRe: Error show ImageIcon ??? Pin
TorstenH.10-Nov-12 14:02
TorstenH.10-Nov-12 14:02 
It's called OOP for a reason. Please, the constructor never executes code. Define some methods for that.
You are adding the JLabel to the ContentPane - which you first set with a JLabel. Adding a JLabel to a JLabel does not work.
Also please just refer to the JFrame by adding to "this".

Suggestion:

1. OOP that.
2. Set up a JPanel, that forms the playground for the rat.
You probably want a second Panel for the Game controls - which are now to be entered in the console before.
3. Use a null-Layout for the game-Panel. You want to move the rat by pixel / absolute position, not by relative position to some other control.
FlowLayout is also default, does not need to be initalized.

Java
import javax.swing.*;
class CatchTheRat extends JFrame {
	// The Rat
	JLabel lb;

	// Move it randomly!
	Random r;

	public CatchTheRat(int k) {
		createGUI(k);
	}

	private void createGUI(int k) {

		// Set frame properties
		setTitle("Catch The Rat");
		setLayout(new FlowLayout());
		setDefaultCloseOperation(EXIT_ON_CLOSE);
		
//		setExtendedState(MAXIMIZED_BOTH);
		setSize(new Dimension(800,600));
		this.add(createContent(k));
		
		// Maximize the frame
		setVisible(true);
	}

	private JPanel createContent(int k) {
		JPanel oPanel = new JPanel();
		// Set the background (just for a good look)
//		setContentPane(new JLabel(new ImageIcon("background.jpg")));

		// Set layout to the content pane
//		oPanel.setLayout(new FlowLayout());

		// Create the rat
		lb = new JLabel(new ImageIcon("rat.jpg"));

		// Add the rat
		oPanel.add(lb);

		// Create Random object
		r = new Random();

// The random positions do not work, will "hide" the icon therefor

//		// Create a timer and call it for every k seconds
//		new Timer(k, new ActionListener() {
//
//			public void actionPerformed(ActionEvent ae) {
//
//				// Move the rat randomly, subtract 75, so that the rat should
//				// not meet the edges
//				lb.setLocation(r.nextInt(getWidth()), r.nextInt(getHeight()));
//
//			}
//
//		}).start();

		// Add mouselistener, notify when user clicks it!
		lb.addMouseListener(new MouseAdapter() {

			public void mouseClicked(MouseEvent me) {
				// Create a beep sound when clicked to notify
				Toolkit.getDefaultToolkit().beep();

				// Also print it!
				System.out.println("Caught!");
			}

		});
		
		return oPanel;

	}

	public static void main(String args[]) {

		// Create Scanner object
//		Scanner s = new Scanner(System.in);
//
//		// Let the user enter his capability of catching the rat!
//		System.out.println("Enter the speed");
//
//		// Read the input
//		int k = s.nextInt();

		// Create the frame and send the value of k
		new CatchTheRat(5);

	}
}

regards Torsten
When I'm not working

GeneralRe: Error show ImageIcon ??? Pin
Gowtham Gutha15-Nov-12 6:46
Gowtham Gutha15-Nov-12 6:46 
GeneralRe: Error show ImageIcon ??? Pin
TorstenH.15-Nov-12 9:00
TorstenH.15-Nov-12 9:00 
GeneralRe: Error show ImageIcon ??? Pin
Gowtham Gutha16-Nov-12 7:08
Gowtham Gutha16-Nov-12 7:08 
GeneralRe: Error show ImageIcon ??? Pin
TorstenH.18-Nov-12 19:10
TorstenH.18-Nov-12 19:10 
AnswerRe: Error show ImageIcon ??? Pin
Gowtham Gutha15-Nov-12 6:43
Gowtham Gutha15-Nov-12 6:43 
Questionhow to create digital survey android and php?? Pin
Luis Antonio Mantilla9-Nov-12 12:22
Luis Antonio Mantilla9-Nov-12 12:22 
QuestionAny Java Book Recommend Pin
waylife7-Nov-12 19:14
waylife7-Nov-12 19:14 
AnswerRe: Any Java Book Recommend Pin
Peter_in_27808-Nov-12 1:13
professionalPeter_in_27808-Nov-12 1:13 
GeneralRe: Any Java Book Recommend Pin
waylife12-Nov-12 22:07
waylife12-Nov-12 22:07 
AnswerRe: Any Java Book Recommend Pin
Gowtham Gutha9-Nov-12 9:02
Gowtham Gutha9-Nov-12 9:02 
GeneralRe: Any Java Book Recommend Pin
waylife12-Nov-12 22:08
waylife12-Nov-12 22:08 
GeneralRe: Any Java Book Recommend Pin
Gowtham Gutha15-Nov-12 0:22
Gowtham Gutha15-Nov-12 0:22 
GeneralRe: Any Java Book Recommend Pin
waylife15-Nov-12 3:10
waylife15-Nov-12 3:10 
GeneralRe: Any Java Book Recommend Pin
waylife14-Nov-12 0:54
waylife14-Nov-12 0:54 
AnswerRe: Any Java Book Recommend Pin
Ivan Melnikov1-Jul-13 22:38
Ivan Melnikov1-Jul-13 22:38 
QuestionHow to create/set an element of a document Pin
prithaa6-Nov-12 3:43
prithaa6-Nov-12 3:43 
AnswerRe: How to create/set an element of a document Pin
padmanabanproject7-Nov-12 19:58
padmanabanproject7-Nov-12 19:58 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.