Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to use Java threads to realize time dynamic display

2025-01-19 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/01 Report--

This article mainly explains "how to use Java threads to achieve time dynamic display", the explanation content in the article is simple and clear, easy to learn and understand, please follow the idea of Xiaobian slowly in-depth, together to study and learn "how to use Java threads to achieve time dynamic display"!

The code is as follows:

import javax.swing.*; import java.awt.*; import java.util.Date;public class Test1 { public static void main(String[] args) { JFrame = new JFrame("My window"); frame.setBounds(200,200,400,400); JTextField textField=new JTextField(); frame.add(textField); new Thread(new Runnable() { @Override public void run() { while(true){ try { Thread.sleep(1000); } catch (InterruptedException e) { e.printStackTrace(); } Date date=new Date(); textField.setText(date.getHours()+":"+date.getMinutes()+":"+date.getSeconds()); textField.setFont(new Font("regular font", Font.BOLD,20)); } } }).start(); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); frame.setVisible(true); }} Thank you for reading, the above is "how to use Java threads to achieve time dynamic display" content, after learning this article, I believe we have a deeper understanding of how to use Java threads to achieve time dynamic display, the specific use of the situation also needs to be verified. Here is, Xiaobian will push more articles related to knowledge points for everyone, welcome to pay attention!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report