<script type="text/javascript"> google_ad_client = "pub-8800625213955058"; /* 336x280, 创建于 07-11-21 */ google_ad_slot = "0989131976"; google_ad_width = 336; google_ad_height = 280; // </script> <script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"> </script> /* Description : 格式化显示日期型数据 @param Date dt_in :日期型数据 boolean bShowTimePart_in : 是否显示时间部分 @return String 格式化后的日期格式 */ public String DoFormatDate(java.util.Date dt_in, boolean bShowTimePart_in) { if (bShowTimePart_in) return (new SimpleDateFormat("yyyy-MM-dd hh:mm:ss")).format(dt_in); else return (new SimpleDateFormat("yyyy-MM-dd")).format(dt_in); }
java日期格式化
最新推荐文章于 2024-10-09 22:04:54 发布