android 动态获取当前时间,如何在Android中从互联网获取当前时间

这是我为您创建的方法,您可以在代码中使用它public String getTime() {try{

//Make the Http connection so we can retrieve the time

HttpClient httpclient = new DefaultHttpClient();

// I am using yahoos api to get the time

HttpResponse response = httpclient.execute(new

HttpGet("http://developer.yahooapis.com/TimeService/V1/getTime?appid=YahooDemo"));

StatusLine statusLine = response.getStatusLine();

if(statusLine.getStatusCode() == HttpStatus.SC_OK){

ByteArrayOutputStream out = new ByteArrayOutputStream();

response.getEntity().writeTo(out);

out.close();

// The response is an xml file and i have stored it in a string

String responseString = out.toString();

Log.d("Response", responseString);

//We have to parse the xml file using any parser, but since i have to

//take just one value i have deviced a shortcut to retrieve it

int x = responseString.indexOf("");

int y = responseString.indexOf("");

//I am using the x + "" because x alone gives only the start value

Log.d("Response", responseString.substring(x + "".length(),y) );

String timestamp =  responseString.substring(x + "".length(),y);

// The time returned is in UNIX format so i need to multiply it by 1000 to use it

Date d = new Date(Long.parseLong(timestamp) * 1000);

Log.d("Response", d.toString() );

return d.toString() ;

} else{

//Closes the connection.

response.getEntity().getContent().close();

throw new IOException(statusLine.getReasonPhrase());

}}catch (ClientProtocolException e) {Log.d("Response", e.getMessage());}catch (IOException e) {Log.d("Response", e.getMessage());}return null;}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值