Java의 인터넷 시간 서버에서 시간을 얻는 방법
정확한 시간을 얻기 위해 프로그래머는 신뢰할 수 있는 시간 서버를 참조해야 하는 경우가 많습니다. . 이 문서에서는 Java 기능을 활용하여 지정된 인터넷 시간 서버, 특히 in.pool.ntp.org에서 시간을 검색하여 그리니치 표준시(GMT)를 계산하는 방법을 보여줍니다.
Java 프로그래밍 언어는 NTP( Network Time Protocol) 라이브러리를 사용하여 개발자가 외부 소스와 시간을 동기화할 수 있습니다. 다음 코드 조각은 이 라이브러리를 활용하는 방법을 보여줍니다.
import java.net.InetAddress; import java.util.Date; import org.apache.commons.net.ntp.NTPUDPClient; import org.apache.commons.net.ntp.TimeInfo; import org.apache.commons.net.ntp.TimeStamp; public class TimeServer { public static void main(String[] args) throws Exception { // Define the time server address String TIME_SERVER = "in.pool.ntp.org"; // Instantiate a NTP client NTPUDPClient timeClient = new NTPUDPClient(); // Get the IP address of the time server InetAddress inetAddress = InetAddress.getByName(TIME_SERVER); // Retrieve time information from the server TimeInfo timeInfo = timeClient.getTime(inetAddress); // Extract the transmission timestamp from the received packet long returnTime = timeInfo.getMessage().getTransmitTimeStamp().getTime(); // Convert the timestamp to a Date object for readability Date time = new Date(returnTime); // Display the obtained GMT System.out.println("Current GMT: " + time); } }
이 코드 샘플은 지정된 시간 서버에 연결하여 시간 정보를 검색하고 이에 따라 GMT를 계산합니다. 결과 GMT는 정밀도와 가독성을 모두 제공하는 날짜 개체로 편리하게 표시됩니다.
NTPUDPClient 클래스와 함께 Apache Commons Net 라이브러리를 활용하면 Java 프로그래머가 인터넷 시간 서버에 원활하게 액세스하고 정확한 시간을 얻을 수 있습니다. 값은 시스템 설정이나 잠재적인 시계 드리프트에 관계없이 적용됩니다.
위 내용은 Java의 인터넷 시간 서버에서 그리니치 표준시(GMT)를 검색하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!