- 相關推薦
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中將毫秒轉化為日期的方法】相關文章:
Java中日期的處理方法09-03
CAD中將圖形前置和后置的方法10-27
使用sql語句查詢日期的方法06-01
Java byte[]轉int如何實現05-24
Java枚舉的常用方法10-05
Java線程同步的方法10-25
意語表示日期和時間的方法08-09
Java數組定義常用方法09-28