Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 
  • How to change dateformat of DDLRecord created date in Liferay 6.2

    • 0
    • 1
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 906
    Comment on it

    Hello guys,
    Some programmers many time faces difficulty while changing date format in liferay. Therefore By Below example, I am going to guide you How to change date format in liferay?

    Given bellow is the date format in GMT of liferay

    1. "E MMM dd HH:mm:ss 'GMT' yyyy" 4 Nov 2014 10:08:28 GMT

    Now , retrieve record created date :

    1. List<DDLRecord> ddlRecordnew = null;
    2.  
    3.  
    4. try {
    5.  
    6. ddlRecordnew = DDLRecordLocalServiceUtil.getDDLRecords(-1,Integer.MAX_VALUE);
    7.  
    8.  
    9. if (ddlRecordnew != null) {
    10.  
    11. for (int i = 0; i &lt; ddlRecordnew.size(); i++) {
    12. String createDate=ddlRecordnew.get(i).getCreateDate().toGMTString();
    13. System.out.println(createDate);
    14.  
    15.  
    16. // output :4 Nov 2014 10:08:28 GMT
    17.  
    18. }
    19. }
    20. }
    21. catch(Exception e)
    22. {
    23. }

    If you want to change date format of createDate

    1. //applyPattern("E MMM dd HH:mm:ss 'GMT' yyyy"); 4 Nov 2014 10:08:28 GMT
    2. Date dt = new SimpleDateFormat("d MMM yyyy HH:mm:ss 'GMT'").parse(createDate);
    3. //applyPattern("yyyy/MM/dd");
    4. String createDate = new SimpleDateFormat("yyyy/MM/dd").format(dt);

 0 Comment(s)

Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Reset Password
Fill out the form below and reset your password: