List of usage examples for java.util SimpleTimeZone toString
public String toString()
From source file:Main.java
public static void main(String args[]) { SimpleTimeZone stobj = new SimpleTimeZone(820, "US"); // get string value of time zone System.out.println("String value is : " + stobj.toString()); }