我有一個created_on =「1324987878」的時間標籤,我想時間爲5:41 PM。如何將sql時間轉換爲hh:mm AM/PM?
回答
使用SimpleDateFormat API。
Date dateObj = new Date(1324987878);
SimpleDateFormat sdfAM = new SimpleDateFormat("MMM dd, yyyy hh:mm a");
System.out.println(sdfAM.format(dateObj));
輸出:
Jan 16, 1970 01:33 PM
+1我會去與此有關。 – 2011-12-27 12:47:35
http://dev.thecellcity.com/~alex/FootballKaki/index.php/api/cheers?n_limit=10&n_offset=0&output=dict我想從json響應它,它在iphone下午5:41怎麼辦? – 2011-12-27 12:54:32
使用此方法,它會返回時間2011年4月6日上午5:23
public static String getTime(long milliseconds)
{
return DateFormat.format("MMM dd, yyyy h:mmaa", milliseconds).toString();
}
long created_on = "1324987878";
String pattern = "HH:mm a"
SimpleDateFormat dateFormat = new SimpleDateFormat(pattern);
Date date = new Date(created_on);
// 5:41 PM
String yourFormatedDate = dateFormat.format(date);
使用SimpleDateFormat
樣品鱈魚Ë
long yourmilliseconds = 1324987878;
SimpleDateFormat sdf = new SimpleDateFormat("hh:mm +a");
Date resultdate = new Date(yourmilliseconds);
System.out.println(sdf.format(resultdate));
Thnx其漂亮的代碼將第二個轉換爲millis – 2012-01-03 14:58:12
- 1. 將AMPM轉換爲datetime 24小時
- 2. MySQL將時間轉換爲HH:MM
- 3. 工作時間calc - 如何將小數轉換爲「hh:mm」?
- 4. 如何將字符串HH:MM轉換爲Joda持續時間?
- 5. 如何將這毫秒轉換爲時間(hh:mm a)?
- 6. 如何將數值轉換爲時間(hh:mm)在R中?
- 7. 如何將HH:MM時間格式轉換爲SSRS中的小數?
- 8. 時間轉換爲HH:MM PM/AM格式
- 9. 如何將double值轉換爲hh:mm?
- 10. 如何將SQL Server時間轉換爲SQL中的IST時間?
- 11. 在Java中將星期+時間(hh:mm)轉換爲日期
- 12. 將時間從hh:mm:ss轉換爲hh:mm in java
- 13. 使用javascript將十進制時間轉換爲hh:mm格式
- 14. 在PHP Select語句中將MYSQL時間從HH:MM:SS轉換爲HH:MM
- 15. 如何將SQL Server 2008中的varchar時間轉換爲時間
- 16. netezza上的hh:mm轉換爲ss(SQL)
- 17. 在SQL Server中轉換爲HH:MM
- 18. C#轉換天HH:MM在時間跨度
- 19. 轉換HH:MM字符串時間
- 20. 如何將mm-dd-yyyy hh:mm字符串轉換爲unix時間戳?
- 21. 如何將日期時間與偏移量轉換爲MM/dd/yyyy hh:mm
- 22. 將AM/PM時間轉換爲標準時間格式hh:mm用C#
- 23. hh:mm aa(12小時格式)轉換爲HH:mm(24小時制)
- 24. SQL將int轉換爲時間
- 25. SQL將時間轉換爲毫秒
- 26. 將joda LocalTime轉換爲sql時間
- 27. 將時間(7)轉換爲bigint T-SQL
- 28. SQL將INT轉換爲時間
- 29. 將日期時間轉換爲SQL UTC
- 30. SQL Server - 將數字轉換爲時間
@mithun的不同不是在轉換HH:MM:AM – 2011-12-27 12:33:34