程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 更多關於編程 >> 計算機等級考試將毫秒轉化為日期

計算機等級考試將毫秒轉化為日期

編輯:更多關於編程

       將毫秒轉化為日期

      import java.awt.BorderLayout;

      import java.awt.Frame;

      import java.awt.TextArea;

      import java.awt.TextField;

      import java.awt.event.ActionEvent;

      import java.awt.event.ActionListener;

      import java.awt.event.WindowAdapter;

      import java.awt.event.WindowEvent;

      import java.text.SimpleDateFormat;

      import java.util.Date;

      public class ConvertLong2Date extends Frame

      {

      TextField tf = new TextField();

      TextArea ta = new TextArea();

      public static void main(String[] args)

      {

      new ConvertLong2Date().launchFrame();

      }

      public String convertL2D(long l)

      {

      long _l = 0L;

      Date _d = null;

      SimpleDateFormat _sdf = null;

      String _s = null;

      _l = l;

      _d = new Date(_l);

      _sdf = new SimpleDateFormat(“yyyy-MM-dd HH:mm:ss”);

      _s = _sdf.format(_d);

      return _s;

      }

      public void launchFrame()

      {

      setLocation(300, 300);

      setSize(480, 320);

      setResizable(false);

      add(tf,BorderLayout.SOUTH);

      add(ta,BorderLayout.NORTH);

      pack();

      tf.addActionListener(new tfActionListener());

      this.setVisible(true);

      this.addWindowListener(new WindowAdapter()

      {

      public void windowClosing(WindowEvent e)

      {

      System.exit(0);

      }

      });

      }

      public class tfActionListener implements ActionListener

      {

      public void actionPerformed(ActionEvent e)

      {

      long l = Long.parseLong(tf.getText());

      ta.setText(new ConvertLong2Date().convertL2D(l));

      tf.setText(“”);

      }

      }

      }

            :更多精彩教程請關注三聯設計教程 欄目,

    1. 上一頁:
    2. 下一頁:
    Copyright © 程式師世界 All Rights Reserved