Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have epoch time in my file. It may normal or in miliseconds. Please tell how to convert these epoch times in normal human readable format.
Epoch time examples:
1) Normal 1492430625 Indian Local time nearly same as below time
2)In miliseconds 1492430501465 Indian Local time Mon Apr 17 2017 17:31:41
You will need to know which value you are working with. The code I am giving you will work with time in milliseconds. In order to convert the other time unit you described, just multiply it by 1000.
Long myTimeAsLong = 1492430501465L; SimpleDateFormat sdf = new SimpleDateFormat("dd/MM/yyyy"); System.out.println(sdf.format(new Date(myTimeAsLong)));
...or if you wanted to create a routine for this, you could use the following static function...
public static String getDateFromEpoch(Long timeAsLong, String javaDatePattern){ String returnVal = null; if(timeAsLong!=null){ SimpleDateFormat sdf = new SimpleDateFormat(javaDatePattern); returnVal = sdf.format(new Date(timeAsLong)); } return returnVal; }
You will need to know which value you are working with. The code I am giving you will work with time in milliseconds. In order to convert the other time unit you described, just multiply it by 1000.
Long myTimeAsLong = 1492430501465L; SimpleDateFormat sdf = new SimpleDateFormat("dd/MM/yyyy"); System.out.println(sdf.format(new Date(myTimeAsLong)));
...or if you wanted to create a routine for this, you could use the following static function...
public static String getDateFromEpoch(Long timeAsLong, String javaDatePattern){ String returnVal = null; if(timeAsLong!=null){ SimpleDateFormat sdf = new SimpleDateFormat(javaDatePattern); returnVal = sdf.format(new Date(timeAsLong)); } return returnVal; }
I need to convert "1900-01-01T00:00:00" into epoch time. It will be helpful if you have the solution?
Hi,
I have answered your query in your post below.
Warm Regards,
Nikhil Thampi
Please appreciate our Talend community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved