List of usage examples for java.text SimpleDateFormat parse
@Override
public Date parse(String text, ParsePosition pos)
Date
. From source file:Main.java
public static String getNextDateByYear(String s, int i) { SimpleDateFormat simpledateformat = new SimpleDateFormat("yyyyMMdd"); java.util.Date date = simpledateformat.parse(s, new ParsePosition(0)); Calendar calendar = Calendar.getInstance(); calendar.setTime(date);/*from ww w . ja va2 s.c om*/ calendar.add(Calendar.YEAR, i); date = calendar.getTime(); s = simpledateformat.format(date); return s; }
From source file:Main.java
public final static Date stringToDate(String dateString) { ParsePosition position = new ParsePosition(0); SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd", Locale.getDefault()); Date dateValue = simpleDateFormat.parse(dateString, position); return dateValue; }
From source file:Main.java
public static long dateStrToLong(String strDate) { SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd"); ParsePosition pos = new ParsePosition(0); Date strtodate = formatter.parse(strDate, pos); return strtodate.getTime(); }
From source file:Main.java
public static Date strToDateLong(String strDate) { SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd"); ParsePosition pos = new ParsePosition(0); Date strtodate = formatter.parse(strDate, pos); return strtodate; }
From source file:Main.java
public static Date strToDate(String strDate) { SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd"); ParsePosition pos = new ParsePosition(0); Date strtodate = formatter.parse(strDate, pos); return strtodate; }
From source file:Main.java
/** * Parse the Date String in mySQL format into date object * //from w w w. j ava 2 s .c om * @param SQLDate the date String in SQL format ("yyyy-MM-dd HH:mm:ss") * @return The date object corresponding to SQLDate */ public static Date parseSQLDate(String SQLDate) { SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); sdf.setTimeZone(TimeZone.getTimeZone("GMT")); return sdf.parse(SQLDate, new ParsePosition(0)); }
From source file:Main.java
public static String getEDate(String str) { SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd"); ParsePosition pos = new ParsePosition(0); Date strtodate = formatter.parse(str, pos); String j = strtodate.toString(); String[] k = j.split(" "); return k[2] + k[1].toUpperCase() + k[5].substring(2, 4); }
From source file:Main.java
public static Date strToDate1(String strDate) { SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); ParsePosition pos = new ParsePosition(0); Date strtodate = formatter.parse(strDate, pos); return strtodate; }
From source file:Main.java
public static long strToDate(String strDate) { SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); ParsePosition pos = new ParsePosition(0); Date strtodate = formatter.parse(strDate, pos); return strtodate.getTime(); }
From source file:Main.java
public static Date strToDate(String strDate) { SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); ParsePosition pos = new ParsePosition(0); Date strtodate = formatter.parse(strDate, pos); return strtodate; }