Android Date Timezone Change toLocalDate(Date gmtDate)

Here you can find the source of toLocalDate(Date gmtDate)

Description

to Local Date

License

Open Source License

Declaration

public final static Date toLocalDate(Date gmtDate) 

Method Source Code

//package com.java2s;

import java.util.Date;

public class Main {
    public final static Date toLocalDate(Date gmtDate) {

        return new Date();
    }//from   w  ww  .j  a  va 2  s .c o m
}

Related

  1. localDateToUTC(Date dtLocal)