将毫秒转化为日期
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(“”);
}
}
}
相关报道:
- 奥巴马计划投资40亿美元强化美国计算机教育2016-02-01
- 霍金门徒:计算机如何比人更懂世界2014-12-29
- 格灵深瞳:计算机视觉将改变什么2014-10-29
- 人类和计算机的合力 人工智能否如图灵所愿?2014-09-29
- IBM模仿人类大脑开发新型芯片2014-08-08
本类最新
本类最热
科技视界
要闻推荐
今日视点
热点专题
新闻图片
- 新闻排行
- 评测排行