我想从时间戳中分别获得时间和日期.请帮助我.我的时间戳示例是1378798459.
谢谢
解决方法
//尝试以下方法
SimpleDateFormat formatter = new SimpleDateFormat("dd/MM/yyyy"); String dateString = formatter.format(new Date(Long.parseLong(YOUR TIMESTAMP VALUE))); txtDate.setText(dateString);
//你可以把你需要的格式放在这里:
SimpleDateFormat formatter = new SimpleDateFormat(“您需要的格式”);