ZoneId는 Java의 클래스입니다. Instant와 LocalDateTime 간의 변환에 필요한 규칙을 지정하기 위해 도입된 time 패키지입니다. 이 클래스는 ZoneOffset 클래스의 하위 클래스이며 직렬화 가능 인터페이스를 구현하므로 직렬화 가능합니다. 이 클래스는 UTC/그리니치에서만 오프셋을 저장하는 데 사용되는 특정 형식을 사용합니다. 값 기반 클래스이므로 ID에 민감한 작업을 사용하면 예측할 수 없는 결과가 발생할 수 있습니다. 이 클래스는 모든 현지 날짜-시간에 대해 동일한 오프셋을 사용하는 대부분의 고정 오프셋 ID를 나타냅니다.
무료 소프트웨어 개발 과정 시작
웹 개발, 프로그래밍 언어, 소프트웨어 테스팅 등
다음은 Java zoneid의 구문입니다.
구문:
public abstract class ZoneId extends Object implements Serializable
필드: public static final Map
이 지도는 다음과 같습니다.
Java zoneid의 방법은 다음과 같습니다.
이 함수는 시스템 기본 시간대를 가져오는 데 사용됩니다. 이는 TimeZone.getDefault() 함수를 호출하여 해당 시스템의 기본 시간대에 대한 값을 검색합니다. 즉, 시스템 기본 시간대에 대한 모든 업데이트가 결과에 반영됩니다. 출력은 ZoneID 형식으로 변환됩니다. 이 함수에 의해 발생하는 아래 2가지 예외를 처리해야 합니다.-
코드:
import java.time.ZoneId; public class Main { public static void main(String[] args) { ZoneId zone = ZoneId.systemDefault(); System.out.println("Output of systemDefault()-" +zone); } }
출력:
이 함수는 사용 가능한 모든 지역 기반 ID를 반환하는 데 사용됩니다. 목록은 문자열 집합으로 반환됩니다. 반환된 문자열은 Of(String) 함수를 사용하여 Zone-Id 형식으로 변환될 수 있습니다. Offset-Id는 문자열 집합의 결과에 포함되지 않습니다.
코드:
import java.time.ZoneId; import java.util.*; public class Main { public static void main(String[] args) { Set<String> zoneIds = ZoneId.getAvailableZoneIds(); List<String> zoneList = new ArrayList<String>(zoneIds); Collections.sort(zoneList); for (int i = 0; i < 5; i++) { System.out.println("ZoneId in list:" +zoneList.get(i) ); } } }
출력:
이 함수는 함수에 대한 출력으로 문자열로 전달된 유효한 ID에 대해 ZoneID 또는 ZoneOffset을 반환합니다. ZoneOffset은 문자열의 시작 문자('Z', '+' 또는 '-'인 경우)를 기준으로 반환됩니다. 반환되는 ZoneID는 항상 ZoneRules를 따릅니다. 이 변환은 완전한 구문 분석 알고리즘을 사용하여 수행됩니다. 인수의 형식이 유효하지 않은 경우 DateTimeException이 발생하고, 해당 지역의 경우 ID를 찾을 수 없으면 ZoneRulesException이 발생합니다.
코드:
import java.time.*; import java.util.*; import java.time.format.TextStyle; public class Main { public static void main(String[] args) { ZoneId zoneId = ZoneId.of("Asia/Calcutta"); System.out.println("Output of zoneid obtained using of function: "+ zoneId.normalized()); } }
출력:
이 방법은 접두사와 오프셋이 인수로 전달될 때 ZoneID를 얻는 데 사용됩니다. 접두사가 있고 0이 아닌 오프셋 ID가 있는 영역 ID가 반환됩니다. 이 경우 접두사는 “” ZoneOffset이 반환됩니다.
접두사는 'GMT', 'UTC' 또는 'UT'여야 하며, 그렇지 않으면 메소드에서 IllegalArgumentException이 발생합니다.
코드:
import java.time.*; import java.util.*; public class Main { public static void main(String[] args) { ZoneId zoneId = ZoneId.ofOffset("GMT", ZoneOffset.MAX); System.out.println("OfOffset on ZoneId: " + zoneId); } }
Ouput:
This method is used to convert a TemporalAccessor, an arbitrary set of date and time, object to an instance of ZoneId. This function works in a similar manner to TemporalQueries.zone() that extracts offset base zone id. Thus this method matches the signature of Temporal Query that is being used via ZoneId::from() function.
Code:
import java.time.*; import java.util.*; public class Main { public static void main(String[] args) { ZonedDateTime zoneddatetime = ZonedDateTime.parse("2020-02-25T23:12:31.123+02:00[Europe/Paris]"); ZoneId result = ZoneId.from(zoneddatetime); System.out.println("Zone Id got from "+ "TemporalAccessor object \n" + zoneddatetime + "\nis " + result); } }
Output:
This function is used to get a unique time-zone ID for a particular object. The format for an offset-based ID is defined by the getId() method in the Timezone class. The ID given as an output helps to uniquely define the object.
Code:
import java.time.*; import java.util.*; public class Main { public static void main(String[] args) { ZoneId zoneId = ZoneId.of("Asia/Calcutta"); System.out.println("Id using getID(): "+ zoneId.getId()); } }
Output:
This method helps to provide the textual representation of the zone. The style required as well as the locale of the output required is given as arguments. And thus, the suitable textual representation of the time-zone id is given as an output. In case no textual representation is present, a complete ID is returned as an output.
Code:
import java.time.*; import java.util.*; import java.time.format.TextStyle; public class Main { public static void main(String[] args) { ZoneId zoneId = ZoneId.of("Asia/Calcutta"); String result = zoneId.getDisplayName(TextStyle.SHORT, Locale.ENGLISH); System.out.println("Name of ID using getDisplayName(): "+ result); } }
Output:
This function is used to retrieve the rules that are applied for the given ID. These rules give an idea about the calculations to be performed as well as the functionality associated with time-zone like finding an offset for an instant. ZoneRulesProvider supplies these rules. An advanced provider can also make a dynamic update to these rules, but the results may change over time in this case. In case no rule is available or the rules of JRE is different from that of time-zone, a call made to this function may lead to ZoneRulesException.
Code:
import java.time.*; import java.util.*; import java.time.format.TextStyle; public class Main { public static void main(String[] args) { ZoneId zoneId = ZoneId.of("Asia/Calcutta"); System.out.println("Rules are: "+ zoneId.getRules()); } }
Output:
This method is used to check if the given zoneID contains a fixed Offset and if yes, a ZOneOffset equal to that fixed offset is returned; otherwise, this is returned. The returned ID will also have ZoneRules similar to the given offset, but the result we get from the getId() function is different from what we get here.
Code:
import java.time.*; import java.util.*; import java.time.format.TextStyle; public class Main { public static void main(String[] args) { ZoneId zoneId = ZoneId.of("Asia/Calcutta"); System.out.println("Normalized Id: "+ zoneId.normalized()); } }
Output:
This method helps to compare 2 different times ZoneId objects. This method overrides the equals method in the Object class, which is used to compare value stored in 2 objects. Similarly, here the value of these ZoneID is compared to see if 2 objects are equal or not. And, Accordingly, true and false is returned.
Code:
import java.time.*; import java.util.*; import java.time.format.TextStyle; public class Main { public static void main(String[] args) { ZoneId zoneId = ZoneId.of("Asia/Calcutta"); ZoneId zoneId2 = ZoneId.of("Europe/Paris"); System.out.println("Output of Equals: "+ zoneId.equals(zoneId2)); } }
Output:
This function is used to get the hash code for a particular ZoneID object. This hashcode is returned in int format.
Code:
import java.time.*; import java.util.*; import java.time.format.TextStyle; public class Main { public static void main(String[] args) { ZoneId zoneId = ZoneId.of("Asia/Calcutta"); ZoneId zoneId2 = ZoneId.of("Europe/Paris"); System.out.println("Output of zoneid hashCode: "+ zoneId.hashCode()); System.out.println("Output of zoneid2 hashCode: "+ zoneId2.hashCode()); } }
Output:
This function is used to get the string representation of the time -zone ID that is stored in the particular Offset ID. This function overrides the method toString() of Object class.
Code:
import java.time.*; import java.util.*; import java.time.format.TextStyle; public class Main { public static void main(String[] args) { ZoneId zoneId = ZoneId.of("Asia/Calcutta"); ZoneId zoneId2 = ZoneId.of("Europe/Paris"); System.out.println("Output of zoneid toString: "+ zoneId.toString()); System.out.println("Output of zoneid2 toString: "+ zoneId2.toString()); } }
Output:
ZoneID is a serialized class that is used to store the IDs that identify different ZoneRules that the government frequently updates. Thus at the time of serialization, rules are used instead as they contain the entire data set. Also, calling normalized() on ZoneId returns fixed offset ID in the format of ZoneOffset.
위 내용은 자바 영역 ID의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!