javadate轉換
❶ java 怎樣將date類型轉成string
SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
String strdate = format.format(new Date());
這樣就可以將date轉換為String了
❷ java string類型怎麼轉化成date類型
string類型轉化為date類型:
方法一,Date date=new Date("2018-9-30");
方法二,String =(new SimpleDateFormat("格式")).format(Date);
方法三,SimpleDateFormat sdf=new SimpleDateFormat("yyyy-MM-dd");String dstr="2008-4-24";java.util.Date date=sdf.parse(dstr);
date類型轉化為string類型:
方法一,SimpleDateFormat sdf=new SimpleDateFormat("yyyy-MM-dd");java.util.Date date=new java.util.Date();String str=sdf.format(date);
方法二,Date = (new SimpleDateFormat("格式")).parse(String);
SimpleDateFormat 語法:
G --年代標志符, y -- 年, M -- 月, d -- 日, h -- 時12小時制 (1~12),H -- 時24小時制 (0~23), m -- 分,s -- 秒,S -- 毫秒 ,E -- 星期,D -- 一年中的第幾天,F -- 一月中第幾個星期幾 ,w -- 一年中第幾個星期,W -- 一月中第幾個星, a 上午 / 下午 標記符 , k 時 在一天中 (1~24), K 時 在上午或下午 (0~11), z 時區 。
❸ Java中如何轉字元串轉為Date格式
SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd");
Date date = df.parse("2009-03-06");
日期格式有很多種,例如"yyyy年MM月dd日hh時","yyyy-MM-dd HH:mm:ss」等
❹ java 怎麼獲取當天日期,並將日期轉化成數值
import java.text.SimpleDateFormat;import java.util.Date;x0dx0apublic class Timedemo {x0dx0a public static void main(String[] args)x0dx0a {x0dx0a long time=System.currentTimeMillis();x0dx0a Date date=new Date(time);x0dx0a String mat="yyyy-MM-dd";x0dx0a String ma="yyyyMMdd";x0dx0a SimpleDateFormat format=new SimpleDateFormat(mat);x0dx0a SimpleDateFormat forma=new SimpleDateFormat(ma);x0dx0a String nowdate=format.format(date);x0dx0a String nwdate=forma.format(date);x0dx0a int x=Integer.parseInt(nwdate);x0dx0a System.out.println(nowdate);x0dx0a System.out.println(nwdate);x0dx0a System.out.println(x); x0dx0a }x0dx0a}x0dx0ax0dx0a經過測試滿足以上條件 希望對你有幫助
❺ JAVA涓鏃ユ湡鏍煎紡杞鎹錛2012-07-10 00:00:00.000濡備綍杞鎹㈡垚2012騫07鏈10鏃
Java鏃墮棿鏍煎紡杞鎹㈠ぇ鍏
import java.text.*;
import java.util.Calendar;
public class VeDate {
/**
* 鑾峰彇鐜板湪鏃墮棿
*
* @return 榪斿洖鏃墮棿綾誨瀷 yyyy-MM-dd HH:mm:ss
*/
public static Date getNowDate() {
Date currentTime = new Date();
SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
String dateString = formatter.format(currentTime);
ParsePosition pos = new ParsePosition(8);
Date currentTime_2 = formatter.parse(dateString, pos);
return currentTime_2;
}
Java鏄涓闂闈㈠悜瀵硅薄緙栫▼璇璦錛屼笉浠呭惛鏀朵簡C++璇璦鐨勫悇縐嶄紭鐐癸紝榪樻憭寮冧簡C++閲岄毦浠ョ悊瑙g殑澶氱戶鎵褲佹寚閽堢瓑姒傚康錛屽洜姝Java璇璦鍏鋒湁鍔熻兘寮哄ぇ鍜岀畝鍗曟槗鐢ㄤ袱涓鐗瑰緛銆侸ava璇璦浣滀負闈欐侀潰鍚戝硅薄緙栫▼璇璦鐨勪唬琛錛屾瀬濂藉湴瀹炵幇浜嗛潰鍚戝硅薄鐞嗚猴紝鍏佽哥▼搴忓憳浠ヤ紭闆呯殑鎬濈淮鏂瑰紡榪涜屽嶆潅鐨勭紪紼嬨
❻ 將java怎麼將long類型的時間轉換成年月日的形式
用java代碼實現:
public static String longToDate(long lo){
Date date = new Date(lo);
SimpleDateFormat sd = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
return sd.format(date);
}
資料拓展:
長整型(long)是計算機程序語言,是程序設計中數據類型的一種表現方式,一般情況下用long 表示長整型。 long 有符號64位整數,范圍是-2^63-2^63 -1 Int64。
❼ java中,字元串類型的時間數據怎樣轉換成date類型
將字元串類型的時間轉換成date類型可以使用SimpleDateFormat來轉換,具體方法如下:
1、定義一個字元串類型的時間;
2、創建一個SimpleDateFormat對象並設置格式;
3、最後使用SimpleDateFormat的parse方法將String類型的時間轉換成Date類型的時間。
具體代碼如下:
Stringstring="2014-3-17";
SimpleDateFormatdateFormat=newSimpleDateFormat("yyyy-MM-dd");
Datedate=null;
try{
date=dateFormat.parse(string);
System.out.println(date.toLocaleString().split("")[0]);//切割掉不要的時分秒數據
}catch(ParseExceptione){
e.printStackTrace();
}
介紹一下SimpleDateFormat:SimpleDateFormat是Java中一個非常常用的類,該類用來對
日期字元串進行解析和格式化輸出。
❽ 如何將JAVA DATE類型的日期 轉換成指定格式類型的 (如:YYYY-MM-DD) 的 DATE類型數據
Date類型並沒有格式,只有轉換成String格式的時候讓格式化顯示。
new SimpleDateFormat("yyyy-MM-dd HH:mm:ss")format(new Date());
Calendar calendar = Calendar.getInstance();
int year = Integer.parseInt(datetime.substring(0,4));
int month = Integer.parseInt(datetime.substring(5,7));
int date = Integer.parseInt(datetime.substring(8,10));
int hour = Integer.parseInt(datetime.substring(11,13));
int minute = Integer.parseInt(datetime.substring(14,16));
//int second = Integer.parseInt(datetime.substring(17,19));
if(calendar.get(Calendar.YEAR)>year){
int y = calendar.get(Calendar.YEAR)-year;
(8)javadate轉換擴展閱讀:
Date類可以在java.util包中找到,用一個long類型的值表示一個指定的時刻。它的一個有用的構造函數是Date(),創建一個表示創建時刻的對象。getTime()方法返回Date對象的long值。
import java.util.*;
public class Now {
public static void main(String[] args) {
Date now = new Date();
long nowLong = now.getTime();
System.out.println("Value is " + nowLong);