java获取网络时间

摘要:
尝试{URLurl=newURL(“http://www.bjtime.cn“);//获取资源对象URLConnection uc=url.openConnection();//生成连接对象uc.connect();//Issue the connection longld=uc.getDate();//获取网站日期和时间Datedate=newDate(ld);//转换为标准时间对象Calendarcalendar=Calenda
try {
           URL url = new URL("http://www.bjtime.cn");// 取得资源对象
            URLConnection uc = url.openConnection();// 生成连接对象
            uc.connect(); // 发出连接
            long ld = uc.getDate(); // 取得网站日期时间
            Date date = new Date(ld); // 转换为标准时间对象
            Calendar calendar = Calendar.getInstance();
            calendar.setTime(date);
            int day = calendar.get(Calendar.DAY_OF_MONTH);
            if (day == 6) {
                return true;
            } }
catch (Exception e) { e.printStackTrace(); }

免责声明:文章转载自《java获取网络时间》仅用于学习参考。如对内容有疑问,请及时联系本站处理。

上篇对DSL和GPL的初步认识VC socket Connect 超时时间设置下篇

宿迁高防,2C2G15M,22元/月;香港BGP,2C5G5M,25元/月 雨云优惠码:MjYwNzM=

相关文章

java把一段时间分成周,月,季度,年的时间段

package com.mq.test.activeMQ; import java.text.DateFormat; import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.Calendar; import java.util.Date;...

odoo里用sql语句说为日期date类型,没有转换为字符串。

开始我以为是日期now没有转换为string,一直在转换 now = time.strftime("%Y-%m-%d %H:%M:%S") param = (now, id) # 第一次上传时间确定注意date日期一定要用引号才是字符串 a = self.env.cr.execut...

oracle 理解执行计划

·BUFFER SORT是BUFFER却不是SORT 用AUTOTRACE查看执行的计划的同学常问到执行计划里的BUFFER SORT是什么意思,这里为什么要排序呢? BUFFER SORT不是一种排序,而是一种临时表的创建方式。BUFFER是执行计划想要表达的重点,是其操作: 在内存中存放一张临时表。SORT修饰BUFFER,表示具体在内存的什么地方存...

VUE 日历签到

<style lang="scss"> @import "../assets/css/px2rem.scss"; .sign-box { 100%; min-height: 100%; background: #f5f5f5; position: relative; .top-box { padding: px2r...

protobuf编译

win10   cmake   vs2017编译 protobuf编译 cmake Selecting Windows SDK version 10.0.17134.0 to target Windows 10.0.19042. The C compiler identification is MSVC 19.15.26732.1 The CXX com...

JS转换Fri Oct 31 18:00:00 UTC+0800 2008格式

function Todate(num) { //Fri Oct 31 18:00:00 UTC+0800 2008 num = num + ""; var date = ""; var month = newArray(); month["Jan"] = 1; month["Feb"...