SUN认证

Java中将毫秒转化为日期的方法

时间:2024-10-23 08:57:59 SUN认证 我要投稿
  • 相关推荐

Java中将毫秒转化为日期的方法

  将毫秒转化为日期

  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(“”);

  }

  }

  }

【Java中将毫秒转化为日期的方法】相关文章:

CAD中将图形前置和后置的方法07-19

使用sql语句查询日期的方法10-30

如何在word中将文字转换为表格的方法介绍07-26

跟踪Java执行过程的方法08-06

Java数组定义常用方法08-29

关于Excel2010设置日期与时间的方法05-07

把PPT转WORD形式的方法07-18

如何把EXCEL中将隐藏的行和列显示出来的方法09-01

在Word2010中将公式保存到公式库的方法09-11

在Excel中将条件格式转换成普通格式的图文方法步骤10-22