Java Milliseconds timestampToString(long lastModifiedMillis)

Here you can find the source of timestampToString(long lastModifiedMillis)

Description

timestamp To String

License

Open Source License

Declaration

public static String timestampToString(long lastModifiedMillis) 

Method Source Code

//package com.java2s;
/* //from  www.j  ava2s . c  o  m
Copyright 2005-2018, Foundations of Success, Bethesda, Maryland
on behalf of the Conservation Measures Partnership ("CMP").
Material developed between 2005-2013 is jointly copyright by Beneficent Technology, Inc. ("The Benetech Initiative"), Palo Alto, California.
    
This file is part of Miradi
    
Miradi is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License version 3, 
as published by the Free Software Foundation.
    
Miradi is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.
    
You should have received a copy of the GNU General Public License
along with Miradi.  If not, see <http://www.gnu.org/licenses/>. 
*/

import java.text.SimpleDateFormat;
import java.util.Date;

public class Main {
    public static String timestampToString(long lastModifiedMillis) {
        Date date = new Date(lastModifiedMillis);
        SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm");
        return format.format(date);
    }
}

Related

  1. timeoutPropertyToIntMillis(long value)
  2. timeSince_MILLIS(long start_PMILLIS)
  3. timeSinceMillis(long prevTime)
  4. timeSinceMillis(long timestart)
  5. timespanToMillis(String timeString)
  6. timeToMilliseconds(Object unit, long interval)
  7. timeToString(long timeMillis)
  8. timeToTag(long milliSeconds)
  9. toMillis(String ts)