- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
好的,我现在已经尝试了所有方法。我仍然无法让我的计时器更新!...这是我目前所拥有的...到目前为止我尝试过的事情:一个单独的线程(有效但我真的必须使用 java.swing.Timer)计时器如下所示,它不工作java.util.定时器。任何的意见都将会有帮助 导入数独.Sudoku_Board;
import java.awt.Color;
import java.awt.Font;
import java.awt.Rectangle;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.BorderFactory;
import javax.swing.InputVerifier;
import javax.swing.JButton;
import javax.swing.JComponent;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JTextField;
import javax.swing.Timer;
public class Sudoku_GUI extends JFrame {
class NumberedField extends JTextField {
public int row = -1, col = -1;
public void setRowAndCol(int _row, int _col) {
row = _row;
col = _col;
}
}
private static final long serialVersionUID = 1L;
boolean paused = false;
Timer timer = null;
int minutes_elapsed = 0, seconds_elapsed = 0;
NumberedField field[][];
Sudoku_Board Puzzle_Board, Solution_Board;
JLabel time_label, time;
JButton pause;
public Sudoku_GUI() {
super("fokleSudoku");
setSize(420, 480);
setResizable(false);
Solution_Board = new Sudoku_Board();
Puzzle_Board = new Sudoku_Board();
time_label = new JLabel("Time: ");
time_label.setBounds(new Rectangle(20, 8, 100, 20));
add(time_label);
time_label.setVisible(false);
time = new JLabel();
time.setBounds(new Rectangle(60, 8, 100, 20));
time.setVisible(false);
time.setForeground(Color.BLUE);
add(time);
JButton new_game = new JButton("New Game");
new_game.setBounds(new Rectangle(20, 400, 100, 30));
new_game.setBackground(Color.BLACK);
new_game.setForeground(Color.WHITE);
add(new_game);
new_game.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent arg0) {
Solution_Board.generate();
Puzzle_Board.random_remove(Solution_Board);
apply_fields(Puzzle_Board);
time_label.setVisible(true);
pause.setVisible(true);
if(paused)
unpause();
start_timer(0, 0);
}
});
pause = new JButton("Pause");
pause.setBounds(new Rectangle(280, 400, 100, 30));
pause.setBackground(Color.red);
pause.setForeground(Color.WHITE);
pause.setVisible(false);
pause.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent arg0) {
if(paused){
unpause();
start_timer(minutes_elapsed, seconds_elapsed);
}
else {
pause();
}
}
});
add(pause);
setLayout(null);
int x = 20, y = 35;
field = new NumberedField[9][9];
for (int row = 0; row < 9; row++) {
for (int col = 0; col < 9; col++) {
field[row][col] = new NumberedField();
field[row][col].setBounds(x, y, 40, 40);
field[row][col].setFont(new Font(Font.MONOSPACED, Font.BOLD, 20));
field[row][col].setRowAndCol(row, col);
field[row][col].setHorizontalAlignment(JTextField.CENTER);
field[row][col].setInputVerifier(new InputVerifier() {
public boolean verify(JComponent arg0) {
NumberedField curr_field = (NumberedField) arg0;
if (curr_field.getText().length() != 1)
curr_field.setText("");
else if (!(curr_field.getText().charAt(0) >= '0' && curr_field
.getText().charAt(0) <= '9'))
curr_field.setText("");
else if (curr_field.getText().charAt(0) >= '0'
&& curr_field.getText().charAt(0) <= '9') {
final int temp[] = Puzzle_Board.validValue(
Integer.parseInt(curr_field.getText()),
curr_field.row, curr_field.col);
if (temp[0] != 808 && temp[1] != -1) {
new Thread(new Runnable() {
public void run() {
Color original_color = field[temp[0]][temp[1]]
.getBackground();
field[temp[0]][temp[1]]
.setBackground(Color.RED);
try {
Thread.sleep(2000);
} catch (InterruptedException e) {
}
field[temp[0]][temp[1]]
.setBackground(original_color);
}
}).start();
} else {
Puzzle_Board.setValue(
Integer.parseInt(curr_field.getText()),
curr_field.row, curr_field.col);
}
}
return true;
}
});
add(field[row][col]);
x += 40;
if (col % 3 == 0 && (row) % 3 == 0)
field[row][col].setBorder(BorderFactory.createMatteBorder(
2, 2, 1, 1, Color.BLACK));
else if ((col + 1) % 3 == 0 && (row + 1) % 3 == 0)
field[row][col].setBorder(BorderFactory.createMatteBorder(
1, 1, 2, 2, Color.BLACK));
else if (col % 3 == 0 && (row + 1) % 3 == 0)
field[row][col].setBorder(BorderFactory.createMatteBorder(
1, 2, 2, 1, Color.BLACK));
else if ((col + 1) % 3 == 0 && row % 3 == 0)
field[row][col].setBorder(BorderFactory.createMatteBorder(
2, 1, 1, 2, Color.BLACK));
else if (row % 3 == 0)
field[row][col].setBorder(BorderFactory.createMatteBorder(
2, 1, 1, 1, Color.BLACK));
else if ((row + 1) % 3 == 0)
field[row][col].setBorder(BorderFactory.createMatteBorder(
1, 1, 2, 1, Color.BLACK));
else if (col % 3 == 0)
field[row][col].setBorder(BorderFactory.createMatteBorder(
1, 2, 1, 1, Color.BLACK));
else if ((col + 1) % 3 == 0)
field[row][col].setBorder(BorderFactory.createMatteBorder(
1, 1, 1, 2, Color.BLACK));
else
field[row][col].setBorder(BorderFactory.createMatteBorder(
1, 1, 1, 1, Color.BLACK));
if ((col + 1) % 9 == 0) {
y += 40;
x = 20;
}
}
}
setVisible(true);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
public void apply_fields(Sudoku_Board sudoku_board) {
empty_fields();
for (int row = 0; row < 9; row++) {
for (int col = 0; col < 9; col++) {
if (sudoku_board.getValue(row, col) != -255) {
field[row][col].setText(String.valueOf(sudoku_board
.getValue(row, col)));
field[row][col].setEditable(false);
}
}
}
}
public void fill_answer() {
apply_fields(Solution_Board);
}
public void empty_fields() {
for (int row = 0; row < 9; row++) {
for (int col = 0; col < 9; col++) {
field[row][col].setText("");
field[row][col].setBackground(Color.WHITE);
field[row][col].setEditable(true);
}
}
}
public void start_timer(int minutes, int seconds){
if(timer == null){
timer = new Timer(0, new ActionListener(){
public void actionPerformed(ActionEvent e) {
time.setText(String.format("%02d:%02d", minutes_elapsed,seconds_elapsed));
seconds_elapsed++;
if(seconds_elapsed == 60){
seconds_elapsed = 0;
minutes_elapsed++;
}
}
});
timer.setDelay(1000);
timer.setRepeats(true);
}
timer.start();
}
public void stop_timer(){
if(timer != null){
timer.stop();
}
}
public void pause(){
if(!paused){
paused = true;
pause.setText("Resume");
stop_timer();
empty_fields();
}
}
public void unpause(){ // DOES NOT START THE TIMER !! -- NEEDED IN SETTING UP A NEW GAME.
if(paused){
paused = false;
pause.setText("Pause");
apply_fields(Puzzle_Board);
}
}
public static void main(String... args) throws InterruptedException {
new Sudoku_GUI();
}
}
这里是数独板文件,如果你想用它来调试......
package sudoku;
import java.util.ArrayList;
import java.util.Random;
public class Sudoku_Board {
private int Board[][];
public Sudoku_Board() {
Board = new int[9][9];
clear();
}
public void print() {
}
public int[] validValue(int value, int row, int col) { // (-1,-1) invalid
int index[] = {-1,-1};
return index;
}
public void random_remove(Sudoku_Board obj) {
}
public void clear() {
}
public void generate() {
}
最佳答案
您有 time.setVisible(false);
但没有 time.setVisible(true);
。似乎您正在使显示 Time:
的标签可见,但显示实际时间的标签永远不会可见。
关于java - 无法获取定时器标签来显示时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11858891/
哪种定时器在性能方面更适合使用? Jquery 计时器或 Javascript 计时器。 具有计时器的页面没有任何 Jquery 代码。 谢谢 最佳答案 在仅使用计时器的页面上引用完整的 JQuery
R 语言有没有简单的方法来设置定时器功能?计时器函数是指位于 session 后台并每隔一段时间执行一次的函数。 干杯! 最佳答案 tcltk2 包中有 tclTaskSchedule 函数(和其
我想在点击发生后调用 setTimeout()。 如果用户在 300ms 过去之前再次点击,我想停止那个计时器,触发另一个函数并重新启动原来的计时器。 我知道 setTimeout() 但我不确定如何
请参阅下面的代码...它会在页面加载 + 8 秒后更改图像,然后继续每 1 秒更改一次。 setInterval(function(){ setTimeout(function(){
我正在尝试使用计时器来安排应用程序中的重复事件。但是,我希望能够实时调整事件触发的时间段(根据用户输入)。 例如: public class HelperTimer extends TimerTask
setTimeout()--用于指定在一段特定的时间后执行某段程序。 格式: [定时
setTimeout 和 clearTimeout 复制代码 代码如下: var obj = setTimeout(cb, ms); setTim
if(e.getSource()==continuous) { TimerTask task = new TimerTask() { public void run()
请谁能告诉我如何在 iPhone 的 cocos2d 中实现启动游戏的倒计时器。 我的意思是,按下“播放”时,一个新场景会出现,显示数字“3”、“2”、“1”,然后显示“GO!”一词。 最佳答案 来自
我正在制作一个计时器,而且效果很好。唯一的问题是,每过一秒,它就会在新行中打印剩余的时间(以秒为单位)。我该如何做到这一点,而不是打印一个新行,而只是改变当前行中显示的内容? 这就是我所拥有的...
这个问题在这里已经有了答案: Lua Program Delay (2 个答案) 关闭 7 年前。 我目前使用 Corona SDK,Lua 作为我的主要语言。我在使用此代码时遇到问题 - 当我运行
我正在制作一个计时器,而且效果很好。唯一的问题是,每过一秒,它就会在新行中打印剩余的时间(以秒为单位)。我该如何做到这一点,而不是打印一个新行,而只是改变当前行中显示的内容? 这就是我所拥有的...
到目前为止,我使用的每种方法都只是暂时卡住我的程序,但我希望游戏继续运行,我只希望盾牌 boolean 值在 X 时间内为 true,然后在时间到期后返回 false,有吗有办法做到这一点吗?谢谢。
我需要创建一个异步线程,它运行一次,延迟 2 分钟,并且可以随时终止。我看到了几种可能的解决方案: ScheduledExecutorService 和 FutureTask 允许我中断正在运行的任务
我开发了一个简单的应用程序并使用了计时器,但如果我多次运行计时器,计时器会丢弃此异常:线程“AWT-EventQueue-0”java.lang.IllegalStateException 中的异常:
我正在实现一个计时器: timer = new Timer(); timer.schedule(new TimerTask() { @Overr
我有一个有点复杂的 iOS 用户界面,我需要每秒重新加载 UICollectionView 的特定单元格以显示时间(有点像复杂的秒表),我还需要每秒做一些其他事情在这次通话中。 问题的第 1 部分 我
我一直在研究可用于 QueryPerformanceCounter()/QueryPerformanceFrequency() 的不同类型的计时器,在进一步研究之后,我发现了一个使用计时器类的例子..
我正在尝试以微秒为单位做一个计时器,但它不太管用。 #include #include #include using namespace std; int main () { struc
假设我有一个整数数组 int timeouts [] = {1000 , 2000 , 3000 , 3500}; 我想创建一个计时器,最多计时 3.5 秒,并在毫秒计数等于数组元素之一时调用相同的函
我是一名优秀的程序员,十分优秀!