java如何获得当前时间,除系统时间以外
发布网友
发布时间:2022-05-03 03:06
我来回答
共2个回答
热心网友
时间:2022-05-19 13:28
import java.io.IOException;
import java.net.URL;
import java.net.URLConnection;
import java.util.Date;
public class TimeGetter {
public static void main(String[] args) throws IOException {
// 联网获取时间
URL url=new URL("http://www.bjtime.cn");//取得资源对象
URLConnection uc=url.openConnection();//生成连接对象
uc.connect(); //发出连接
long ld=uc.getDate(); //取得网站日期时间
System.out.println(new Date(ld));
}
}
// 但是不联网不可能,巧妇难为无米之炊
热心网友
时间:2022-05-19 14:46
好像没有办法啊,只有用系统时间了,还有就是你想办法是否通过网络来获得时间了。
https://gss0.baidu.com/8aQDcnSm2Q5IlBGlnYG/special/time/
通过网络访问得到时间,不过会很麻烦的。