這篇文章主要介紹java獲取系統(tǒng)當(dāng)前時(shí)間的方法,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!
創(chuàng)新互聯(lián)專注于昭蘇網(wǎng)站建設(shè)服務(wù)及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗(yàn)。 熱誠為您提供昭蘇營銷型網(wǎng)站建設(shè),昭蘇網(wǎng)站制作、昭蘇網(wǎng)頁設(shè)計(jì)、昭蘇網(wǎng)站官網(wǎng)定制、小程序制作服務(wù),打造昭蘇網(wǎng)絡(luò)公司原創(chuàng)品牌,更為您提供昭蘇網(wǎng)站排名全網(wǎng)營銷落地服務(wù)。
java獲取系統(tǒng)當(dāng)前時(shí)間的方法:獲得當(dāng)前時(shí)間和當(dāng)前時(shí)間前30秒時(shí)間,代碼為【SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");】。
java獲取系統(tǒng)當(dāng)前時(shí)間的方法:
import org.junit.Test; import java.text.SimpleDateFormat; import java.util.Calendar; import java.util.Date; import java.util.GregorianCalendar; /** * @author ceshi * @Title: ceshi * @ProjectName ceshi * @Description: TODO * @date 2018/7/59:48 */ public class JunitCalendar { @Test public void test(){ //獲得當(dāng)前時(shí)間和當(dāng)前時(shí)間前30秒時(shí)間 SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); Calendar c = new GregorianCalendar(); Date date = new Date(); System.out.println("系統(tǒng)當(dāng)前時(shí)間"+df.format(date)); //設(shè)置參數(shù)時(shí)間 c.setTime(date); //SECOND 秒 整數(shù)增加,負(fù)數(shù)減少 c.add(Calendar.SECOND,-10); System.out.println("系統(tǒng)前10秒時(shí)間:"+df.format(c.getTime())); //DAY_OF_MONTH 天 整數(shù)增加,負(fù)數(shù)減少 c.add(Calendar.DAY_OF_MONTH,1); System.out.println("系統(tǒng)前1天時(shí)間:"+df.format(c.getTime())); } }
以上是“java獲取系統(tǒng)當(dāng)前時(shí)間的方法”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!