亚洲在线久爱草,狠狠天天香蕉网,天天搞日日干久草,伊人亚洲日本欧美

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

程序錯誤""顯示系統當前年月日時分秒 ""該怎么辦?

程序錯誤""顯示系統當前年月日時分秒 ""該怎么辦?

慕標琳琳 2022-10-13 11:11:35
import java.awt.*;import java.awt.event.*;import java.util.Calendar;import javax.swing.*;public class timeTest extends JFrame{final timeTest ti=this;private JLabel label=new JLabel(); public timeTest(){this.setSize(800,400);this.setTitle("時間");this.setLayout(null);this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);Toolkit tk=this.getToolkit();Dimension screenSize=tk.getScreenSize();this.setLocation(screenSize.width/4-this.getWidth()/4, screenSize.height/4-this.getHeight()/4);label.setBounds(200,80,480,80); this.getContentPane().add(label); ActionListener taskPerformer=new ActionListener(){public void actionPerformed(ActionEvent e){Calendar calendar=new Calendar();label.setText(calendar.get(Calendar.YEAR) - 1900 +"年"+calendar.get(Calendar.MONTH)+"月"+calendar.get(Calendar.DAY_OF_WEEK)+"日"+ calendar.get(Calendar.HOUR_OF_DAY) +":"+calendar.get(Calendar.MINUTE)+":"+calendar.get(Calendar.SECOND));label.setFont(new Font("黑體",Font.PLAIN,25));};new Timer(1000, taskPerformer).start(); this.setVisible(true); }public static void main(String[] args) {new timeTest();}}
查看完整描述

3 回答

?
素胚勾勒不出你

TA貢獻1827條經驗 獲得超9個贊

Date nowDate = nowTime.getTime();
public static String getTime(long time) {
Date da = new Date(time);
String dateFormat = "yyyy-MM-dd HH:mm:ss";
SimpleDateFormat sdf = new SimpleDateFormat(dateFormat);
return sdf.format(da);
}

查看完整回答
反對 回復 2022-10-16
?
牧羊人nacy

TA貢獻1862條經驗 獲得超7個贊

calendar.get(Calendar.YEAR) - 1900 +"年"+
calendar.get(Calendar.MONTH)+"月"+calendar.get(Calendar.DAY_OF_WEEK)
+"日"+ calendar.get(Calendar.HOUR_OF_DAY) +":"+calendar.get(Calendar.MINUTE)
+":"+calendar.get(Calendar.SECOND)) 改成:
SimpleDateFormat sf=new SimpleDateFormat("yyyy年-MM月-dd日 hh時:mm分:ss秒");
String s=sf.format(new Date());

查看完整回答
反對 回復 2022-10-16
?
有只小跳蛙

TA貢獻1824條經驗 獲得超8個贊

Calendar 不是用來New 的!通過Calendar.getInstance();來創建的!

查看完整回答
反對 回復 2022-10-16
  • 3 回答
  • 0 關注
  • 186 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯系客服咨詢優惠詳情

幫助反饋 APP下載

慕課網APP
您的移動學習伙伴

公眾號

掃描二維碼
關注慕課網微信公眾號