導航:首頁 > 編程語言 > java走馬燈的工作原理

java走馬燈的工作原理

發布時間:2025-04-05 22:45:31

❶ 使用java做一個走馬燈,源代碼

網上幫你找的 跑馬燈 你可以使用 Timer 也可以使用線程 間隔多少毫秒移動一段距離 實現起來其實也不難
package clock;

import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import java.util.Calendar;
import java.util.Date;
import java.text.*;

public class removingLight extends JFrame {

public removingLight() {

Font font1 = new Font("幼圓", Font.BOLD, 16);

Calendar cal = Calendar.getInstance();
SimpleDateFormat formatter = new SimpleDateFormat(
"EEEE,MMMMdd日,yyyy年 HH:mm:ss");
String mDateTime = formatter.format(cal.getTime());
MovingMessagePanel messagePanel = new MovingMessagePanel(mDateTime);
messagePanel.setFont(font1);
messagePanel.setBackground(Color.BLACK);
messagePanel.setForeground(Color.PINK);
add(messagePanel);
}

public static void main(String[] args) {
removingLight frame = new removingLight();
JLabel label = new JLabel("開始調試時間:5月5日 結束調試時間:5月6日");
label.setBackground(Color.black);
frame.setTitle("軟體1班 XXX 3107006757");
frame.setLocationRelativeTo(null);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setSize(320, 120);
frame.add(label, BorderLayout.SOUTH);
frame.setVisible(true);

}

static class MovingMessagePanel extends JPanel {
private String message = " ";
private int xCoordinate = 0;
private int yCoordinate = 40;

public MovingMessagePanel(String message) {
this.message = message;

Timer timer = new Timer(100, new TimerListener());
timer.start();
}

public void paintComponent(Graphics g) {
super.paintComponent(g);

if (xCoordinate > getWidth()) {
xCoordinate = -100;
}

xCoordinate += 5;
g.drawString(message, xCoordinate, yCoordinate);
}

class TimerListener implements ActionListener {
public void actionPerformed(ActionEvent e) {
repaint();
}
}
}

}

閱讀全文

與java走馬燈的工作原理相關的資料

熱點內容
c4d減面工具 瀏覽:436
蘋果6定位精確到幾米 瀏覽:72
采購電腦招標文件 瀏覽:687
新產品項目立項文件 瀏覽:145
用什麼app可以查清平板性能參數 瀏覽:519
ps打開總是恢復大型文件 瀏覽:603
mtl文件怎麼導入 瀏覽:388
訪問網站怎麼這么慢 瀏覽:584
黑解蘋果如何清空數據 瀏覽:33
代充寶升級的錢 瀏覽:944
新台式電腦怎麼連接網路 瀏覽:265
文件怎麼拷貝 瀏覽:483
windows7旗艦版64位升級密鑰 瀏覽:202
蘋果7如何清理手機緩存 瀏覽:822
linux中如何用關鍵字元查找文件 瀏覽:834
哪些英文後綴文件夾可以刪除 瀏覽:928
就這樣學linux 瀏覽:48
win10關閉q盾 瀏覽:128
蜜塘app117版本在哪裡下載 瀏覽:279
iphone微信電量 瀏覽:897

友情鏈接