Search code examples
javastringtimestampjoptionpane

Convert timestamp to string


In java I need to display 'time of the program start'

It must be in String.

How do I get the current time, and then convert it to a String?


Solution

  • try this

    SimpleDateFormat dateFormat = new SimpleDateFormat("dd-MM-yyyy HH:mm:ss");
    String string  = dateFormat.format(new Date());
    System.out.println(string);
    

    you can create any format see this