java怎么获取当前时间 不是电脑显示的时间

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java怎么获取当前时间 不是电脑显示的时间相关的知识,希望对你有一定的参考价值。

你这个就是当前时间和你说的电脑显示时间两个是一样的= ="

Calendar.getInstance().getTime()<----系统时间

抓网路时间的方法 大陆区请自行换抓取网址
/**
* 网路时间
* @return
*/
public String date()
String date = null;
try
URL url = new URL("https://www.google.com.tw");
URLConnection uc;
uc = url.openConnection();
uc.connect();
long time = uc.getDate();
Date d = new Date(time);
date=new SimpleDateFormat("yyyyMMddHHmmss").format(d);
catch (IOException e)
e.printStackTrace();

return date;


我只知道这两种时间= ="
参考技术A SimpleDateFormat simpleDateFormat = new SimpleDateFormat(
"yyyy-MM-dd hh:mm:ss");
long time = 0;
String urls = "

URL url = new URL(urls);
HttpURLConnection con = (HttpURLConnection) url.openConnection();
con.connect();
InputStream is = con.getInputStream();
BufferedReader br = new BufferedReader(new InputStreamReader(is));
String line;
int index = 0;
while ((line = br.readLine()) != null) 
index++;
if (index < 123)
continue;
if (line.indexOf("window.baidu_time(") != -1) 
String[] s = line.split("\\\\(");
time = Long.parseLong(s[1].substring(0, s[1].length() - 2));
break;


Calendar c = Calendar.getInstance();
c.setTime(new Date(time));
System.out.println(simpleDateFormat.format(c.getTime()));

本回答被提问者采纳
参考技术B System.currentTimeMillis()是获取当前时间的毫秒值 参考技术C Date date = new Date();
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm");
System.out.print(sdf.format(date));
参考技术D SimpleDateFormat fo=new SimpleDateFormat("yyyy-MM-dd");
String d=fo.format(System.currentTimeMillis());
你获取到后format成你想要的格式。

java获取的日期只显示年月日不显示时分秒,怎么处理

参考技术A 可以使用java中的日期格式化工具java.text.SimpleDateFormat来格式化,以下为示例代码:
1.创建java.text.SimpleDateFormat实例
java.text.SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd", Locale.getDefault());
参数说明,"yyyy-MM-dd"表示日期的格式,也可以是这样的 yyyy-MM-dd HH:mm:ss注意大小写

2.将Date对象转成字符串
Date date = new Date();
String str = sdf.format(date);
System.out.println(str);

3.将字符串转成Date
String str = "2013-12-12";
Date date = sdf.parse(str);
System.out.prinltn(date);

注意,SimpleDateFormat解析工具,指定的format以后,只能解析指定格式的日期,例如指定了yyyy-MM-dd则不可以再去解析 yyyy-MM-dd HH:mm:ss格式。本回答被提问者采纳

以上是关于java怎么获取当前时间 不是电脑显示的时间的主要内容,如果未能解决你的问题,请参考以下文章

获取nginx的当前时间,为啥比电脑的时间多两个小时啊?怎么解决啊?

js获取当前的时间显示的是24小时的时间吗

java获取的日期只显示年月日不显示时分秒,怎么处理

C#中怎么获取当前日期和时间

jsp中怎么获得当前时间

c++ 当前时间和日期获取