Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to get time format using country ISO code in android?

I am working on simple application to show the time in different formate. To show the time I am displaying ISO country code using this ISO code. Can I able to change time in that ISO country format?

I have written code as follows

TelephonyManager tMgr = 
    (TelephonyManager)getApplicationContext().getSystemService(
        Context.TELEPHONY_SERVICE);

String iso = tMgr.getNetworkCountryIso();
Log.v("Device iso", "=======>" + iso);
String mbNo = tMgr.getLine1Number();
Log.v("mbNo", "=======>" + mbNo);

Here I am getting iso as US. Can I show the current system time format in US time format?

I have used Date class to show time as follows

DateFormat df = DateFormat.getTimeInstance();
systime = df.format(new Date());

It is displaying time in HH:MM:SS AM/PM format. I would like to display the above time as US format.

How can I display the time in US or any other format?

like image 627
prasad.gai Avatar asked Jun 22 '11 10:06

prasad.gai


2 Answers

In your case I think you could use

Date systemDate = Calendar.getInstance().getTime(); // the current system time
DateFormat df = DateFormat.getDateTimeInstance(DateFormat.SHORT,DateFormat.SHORT, Locale.US);
Date myDate = df.format(systemDate);

Or to use custom format

SimpleDateFormat sdf = new SimpleDateFormat("dd/MM/yyyy HH:mm:ss");
Date myDate = sdf.format(systemDate);

if you have a string use parse

Date myDate = sdf.parse("29/04/1980 12:30:24");
like image 69
Eclipses Avatar answered Nov 17 '22 14:11

Eclipses


DateFormat has a static method that can initalize a localized format.

like image 35
sianis Avatar answered Nov 17 '22 16:11

sianis