WebHosting

Showing posts with label convert long to date in java. Show all posts
Showing posts with label convert long to date in java. Show all posts

Tuesday, March 27, 2012

Convert Long to Date

public static Date LongToDate(long longNumber)
{       
  Date date = new Date(longNumber); 
  return date; 
}

Featured Posts

Error Message in DBeaver connecting using jdbc: Public Key Retrieval is not allowed

Fixing “Public Key Retrieval is not allowed” Error in MySQL with DBeaver   If you are trying to connect MySQL 8+ with DBeaver and suddenly...