Why does my program write that i have problem in Timer?
public class Ball extends JPanel implements ActionListener {
Timer timer = new Timer (3, this);
int x = 0, y = 0, aX = 2, aY = 2;
public void PaintComponent(Graphics g){
Graphics2D g2 = (Graphics2D) g;
I'm trying to create a cursor for a game that moves square by square. While it will move to the next square, though, it leaves the image of the previous cursor on the last square it was on.
As a visual explanation, this is what the program looks like on launch:
This is what it's suppose to look like after you press the right arrow key once (made by forcibly changing launch coordinates):
And this is what it actually looks like after you press the right arrow key once:
Here is the code for the program:
package cursortest; import javax.swing.*; import java.awt.*; import javax.imageio.*; import java.io.*; import java.awt.event.*; public class CursorTest extends JPanel implements KeyListener{
[Code] ......
I'm fully aware that I could just use g.clearRect on the area and remove it for sure, but I know for a fact I shouldn't have to as I have another program I made a long time ago that tried to do something similar without needing to resort to that.
I'm having a small issue with my output on my code. here is what my output is: The magic value for your square is 34, which means that every row, column and diagonal of your square must add up to that number.
Please enter the 4 values for row 0, separated by spaces: 1 2 15 16 Please enter the 4 values for row 1, separated by spaces: 13 14 3 4 Please enter the 4 values for row 2, separated by spaces: 12 7 10 5 Please enter the 4 values for row 3, separated by spaces: 8 11 6 9 Checking square for problems: DIAG: VALID ROWS: VALID COLS: VALID RANG: VALID MAGIC: No
MAGIC should be YES. However i keep getting it saying no.This is the correct output..The magic value for your square is 34, which means that every row, column and diagonal of your square must add up to that number.
Please enter the 4 values for row 0, separated by spaces: 1 2 15 16 Please enter the 4 values for row 1, separated by spaces: 13 14 3 4 Please enter the 4 values for row 2, separated by spaces: 12 7 10 5 Please enter the 4 values for row 3, separated by spaces: 8 11 6 9
import java.util.Scanner; public class pdonahue_Magic { public static void main(String args[]) { int[][] theSquare = new int[4][4]; Scanner s = new Scanner(System.in); System.out.println.
("The magic value for your square is 34, which means that every row, column and diagonal of your square must add up to that number.");
System.out.print("Please enter the 4 values for row 0, separated by spaces: "); theSquare[0][0] = s.nextInt(); theSquare[1][0] = s.nextInt(); theSquare[2][0] = s.nextInt(); theSquare[3][0] = s.nextInt();
(Square numbers) Find the first ten square numbers that are greater than Long.MAX_VALUE . A square number is a number in the form of n 2 . For example, 4, 9, and 16 are square numbers. Find an efficient approach to run your program fast.
I found two ways of solving this but i think both are way inefficient :
-A square number can be divided in lesser square numbers :
what's the square of 36 ? 36 is 2 * 3 * 2 * 3 => 4 * 9 => square is 2 * 3
-second option is to estimate a number and increase it or decrease it based on how close that number * number is to the BigInteger starting number , as as it gets closer the delta gets smaller until it gets to 1
I have to create a square matrix that has a min and max value as well as a size value which is given a integer value in the main method. The matrix has to be filled with random values. Also I have to add that matrix to another one in an addMatrix method and I have to subtract both in a subMatrix method. These are the requirements:
Methods: Constructor() - receives the row and col size for myMatrix and a max and min values for range of random fill values for the matrix. RandFill() - fills matrices with random numbers addMatrix() - receives a matrix object. adds its myMatrix with the received object's myMatrix. The result is placed in this object's myResultMatrix. subMatrix() - subtracts both matrices
I typed up this code but I'm not sure about some parts of it and I would creating min and max values in the Random method and in the main printing the separate 2 matrices and adding and subtracting them:
import java.util.*; public class SquareMatrix2 { public int size; public int myMatrix [][]; public int myResultMatrix; public int [][] ResultStatus;
public class asteriskSquare { public static void main(String[] args) { for (int x = 1; x <= 4; x++){ for (int y = 1; y <= 4; y++){ System.out.println("+"); } System.out.println("+"); } } }
i have a client side program that grabs information about the computer it runs on. I want to have it grab the same info every so often, and check it against the original.
what can be used to do something like that? end game would be having it start up with the pc, then check periodically. if the values are different, send them to the database
[attachment=38859:bcourt.jpg]I/m not used to Timers, so this will be my first time using it and I don't know how. I've been searching the internet for an hour but I can't find an answer into it. I'm currently doing a basketball game which has a Buttons (Shoot,Dribble,Hold) and I need those timers for my buttons to work. Her's the code:
import javax.swing.*; import java.awt.*; import java.awt.event.*; public class BasketBall extends JPanel implements ActionListener { JButton shootButton = new JButton("SHOOT"); JButton drbblButton = new JButton("DRIBBLE"); JButton holdButton = new JButton("HOLD");
i am trying to make taxi meter which shows the current price.Rightnow I have to click startmeter afterevery 1 minute than it's update the new price but I want it to update automatically once the price change after 1 minute instead of me pressing startmeter everytime.This is my 1st time I am using timer class. I am not sure why timer is not working.
One of the classes that i need to serialize includes a few Timers. When I serialize it and then load it up again, the Timers are stopped. How do I start the timers where they left off?I'm using Swing Timers. Should I be using the other kind?
I using the Timers in this case to change something after a countdown, but only once, then the Timers are stopped. I set the Timer tick interval to the time I want it to wait. Should I be using smaller tick intervals, and just waiting for the tenth (or so) tick, or is my way fine?
I come to the point: I just started to learn java through various manuals and in one of them I came across a declaration of an array that I do not understand:
int[][] multiArr = new int[2][];
the manual says that you can allocate the multidimensional array multiArr by defining size in only the first square bracket but I can't undestand how you can use this array. Seems to be no way to store data with it!
I am new to java and i am trying to make a Java application which prints a diamond in a square grid of dots whose side length is input to the application.When you run the code is should be like this:
..*.. .*.*. *...* .*.*. ..*..
My java code print this:
..*.. .***. ***** .***. ..*..
Here is my code:
class Main { public static void main(String args[]) { System.out.println("#Enter size of Diamond :"); int longestRow = BIO.getInt(); for(int row=1 ; row<=longestRow ; ++row)
So currently I'm trying to learn how to draw a square with asterisks based on the input I give for it's sideLength.
So if I have a Square(5) it should draw a 5x5 looking like this:
***** ***** ***** ***** *****
but then in the main method, it should draw multiple squares of given sizes, so say 5, 6, and 7. Making a square for each of the given numbers. This is what I currently have so far ....
class Square { int sideLength; Square( int size ) { sideLength= size; } int getArea() { return sideLength * sideLength;
currently the timer works its format is in 00:00 minutes:seconds, but i want it to start as MMMM d, yyyy h:mm:ss, for example March 17 2014 00:00:01, so only one second has passed here. i believe the set and get format method is fine but the timerhaschanged needs to change as this is where the format takes place.
I am currently making a quiz for a project. I am almost finished, but I need to use a timer.
Here is what I want to happen:
The user to has 15 seconds to answer each question. If they answer, they are given the option to move to the next question, or leave the quiz. If they answer incorrectly, the quiz closes. If they do not answer within the 15 seconds, the program treats this as an incorrect answer, and the quiz closes.
Here is a section of the quiz code which includes the start of the code to the end of the code for the first question:
In my main method I am trying to create a Timer, but when I put new Timer(1000,listener) the constructor is not defined. It is when there is nothing in it. I find this super weird because in all my other programs this does not happen. I looked at the documentation and can't see what I am doing wrong, so I turn here.
I am looking for a timer class that can measure how much time has passed since the timer started (like a stopwatch). I don't wan't to use the swing timer because then I would have to create an ActionListener that increments a variable every time an event is created and that seems like too much work for the simple things I want to do. I just want it to have methods for starting the timer, stopping the timer, pausing the timer, restarting the timer, and getting the time.
I have the following problem in my application, I am using a method called timer () and inside of the not recognize me the visual of the application ie the different components of the view that if they are in that moment ......
public void timer() { System.out.println("Entro a TEMPORIZADOR"); ses = Executors.newScheduledThreadPool(1); // Ejecutar dentro de 4 segundos, repetir cada 3 segundos ses.scheduleAtFixedRate(this, 4 * 1000, 3 * 1000, TimeUnit.MILLISECONDS);