
- 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 TimeZone toZoneId() Method
Description
The Java TimeZone toZoneId() method is used to convert this timezone object to ZoneId.
Declaration
Following is the declaration for java.util.TimeZone.toZoneId() method.
public ZoneId toZoneId()
Parameters
NA
Return Value
This method returns a ZoneId representing the same time zone as this TimeZone.
Exception
NA
Getting ZoneId of a Default Timezone Example
The following example shows the usage of Java TimeZone toZoneId() method to get the ZoneId object from the current timeone object. We've created a TimeZone using getDefault() method and then using toZoneId(), we've printed the corresponding zone id.
package com.tutorialspoint; import java.util.TimeZone; public class TimeZoneDemo { public static void main( String args[] ) { // create time zone object TimeZone tzone = TimeZone.getDefault(); // checking zoneid System.out.println("ZoneId is :" +tzone.toZoneId()); } }
Output
Let us compile and run the above program, this will produce the following result.
ZoneId is :Asia/Calcutta
Getting ZoneId of a Timezone of America Region Example
The following example shows the usage of Java TimeZone toZoneId() method to get the ZoneId object from the current timeone object. We've created a TimeZone using using America/Los_Angeles and then using toZoneId(), we've printed the corresponding zone id.
package com.tutorialspoint; import java.util.TimeZone; public class TimeZoneDemo { public static void main( String args[] ) { // create time zone object TimeZone tzone = TimeZone.getTimeZone("America/Los_Angeles"); // checking zoneid System.out.println("ZoneId is :" +tzone.toZoneId()); } }
Output
Let us compile and run the above program, this will produce the following result.
ZoneId is :America/Los_Angeles
Getting ZoneId of a Timezone of Poland Region Example
The following example shows the usage of Java TimeZone toZoneId() method to get the ZoneId object from the current timeone object. We've created a TimeZone using using Poland and then using toZoneId(), we've printed the corresponding zone id.
package com.tutorialspoint; import java.util.TimeZone; public class TimeZoneDemo { public static void main( String args[] ) { // create time zone object TimeZone tzone = TimeZone.getTimeZone("Poland"); // checking zoneid System.out.println("ZoneId is :" +tzone.toZoneId()); } }
Output
Let us compile and run the above program, this will produce the following result.
ZoneId is :America/Los_Angeles