
- Java.util - Home
- Java.util - ArrayDeque
- Java.util - ArrayList
- Java.util - Arrays
- Java.util - BitSet
- Java.util - Calendar
- Java.util - Collections
- Java.util - Currency
- Java.util - Date
- Java.util - Dictionary
- Java.util - EnumMap
- Java.util - EnumSet
- Java.util - Formatter
- Java.util - GregorianCalendar
- Java.util - HashMap
- Java.util - HashSet
- Java.util - Hashtable
- Java.util - IdentityHashMap
- Java.util - LinkedHashMap
- Java.util - LinkedHashSet
- Java.util - LinkedList
- Java.util - ListResourceBundle
- Java.util - Locale
- Java.util - Observable
- Java.util - PriorityQueue
- Java.util - Properties
- Java.util - PropertyPermission
- Java.util - PropertyResourceBundle
- Java.util - Random
- Java.util - ResourceBundle
- Java.util - ResourceBundle.Control
- Java.util - Scanner
- Java.util - ServiceLoader
- Java.util - SimpleTimeZone
- Java.util - Stack
- Java.util - StringTokenizer
- Java.util - Timer
- Java.util - TimerTask
- Java.util - TimeZone
- Java.util - TreeMap
- Java.util - TreeSet
- Java.util - UUID
- Java.util - Vector
- Java.util - WeakHashMap
- Java.util - Interfaces
- Java.util - Exceptions
- Java.util - Enumerations
- Java.util Useful Resources
- Java.util - Useful Resources
- Java.util - Discussion
Java SimpleTimeZone toString() Method
Description
The Java SimpleTimeZone toString() method is used to get a string representation of this time zone.
Declaration
Following is the declaration for java.util.SimpleTimeZone.toString() method.
public String toString()
Parameters
NA
Return Value
NA
Exception
NA
Getting String Representation of a SimpleTimeZone Instance of GMT Timezone Example
The following example shows the usage of Java SimpleTimeZone toString() method to print the string representation of the SimpleTimeZone object. We've created a SimpleTimeZone using GMT and printed it using toString() method.
package com.tutorialspoint; import java.util.SimpleTimeZone; public class SimpleTimeZoneDemo { public static void main( String args[] ) { // create simple time zone object SimpleTimeZone stobj = new SimpleTimeZone(820,"GMT"); // get string value of time zone System.out.println("String value is : " + stobj.toString()); } }
Output
Let us compile and run the above program, this will produce the following result.
String value is : java.util.SimpleTimeZone[id=GMT,offset=820,dstSavings=3600000,useDaylight=false,startYear=0,startMode=0,startMonth=0,startDay=0,startDayOfWeek=0,startTime=0,startTimeMode=0,endMode=0,endMonth=0,endDay=0,endDayOfWeek=0,endTime=0,endTimeMode=0]
Getting String Representation of a SimpleTimeZone Instance of IST Timezone Example
The following example shows the usage of Java SimpleTimeZone toString() method to print the string representation of the SimpleTimeZone object. We've created a SimpleTimeZone using IST and printed it using toString() method.
package com.tutorialspoint; import java.util.SimpleTimeZone; public class SimpleTimeZoneDemo { public static void main( String args[] ) { // create simple time zone object SimpleTimeZone stobj = new SimpleTimeZone(820,"IST"); // get string value of time zone System.out.println("String value is : " + stobj.toString()); } }
Output
Let us compile and run the above program, this will produce the following result.
String value is : java.util.SimpleTimeZone[id=IST,offset=820,dstSavings=3600000,useDaylight=false,startYear=0,startMode=0,startMonth=0,startDay=0,startDayOfWeek=0,startTime=0,startTimeMode=0,endMode=0,endMonth=0,endDay=0,endDayOfWeek=0,endTime=0,endTimeMode=0]
Getting String Representation of a SimpleTimeZone Instance of BST Timezone Example
The following example shows the usage of Java SimpleTimeZone toString() method to print the string representation of the SimpleTimeZone object. We've created a SimpleTimeZone using BST and printed it using toString() method.
package com.tutorialspoint; import java.util.SimpleTimeZone; public class SimpleTimeZoneDemo { public static void main( String args[] ) { // create simple time zone object SimpleTimeZone stobj = new SimpleTimeZone(820,"BST"); // get string value of time zone System.out.println("String value is : " + stobj.toString()); } }
Output
Let us compile and run the above program, this will produce the following result.
String value is : java.util.SimpleTimeZone[id=BST,offset=820,dstSavings=3600000,useDaylight=false,startYear=0,startMode=0,startMonth=0,startDay=0,startDayOfWeek=0,startTime=0,startTimeMode=0,endMode=0,endMonth=0,endDay=0,endDayOfWeek=0,endTime=0,endTimeMode=0]