Tagged Questions

20
votes
1answer
17k views

Getting “unixtime” in Java

Date.getTime() returns milliseconds since Jan 1, 1970. Unixtime is seconds since Jan 1, 1970. I don't usually code in java, but I'm working on some bug fixes. I have: Date now = new Date(); Long ...
3
votes
4answers
935 views

How can I convert from Gregorian Calendar to Unix Time, in Java?

I am in need of a method to convert GregorianCalendar Object to Unix Time (i.e. a long). Also need a method to convert Unix Time (long) back to GregorianCalendar Object. Are there any methods out ...
1
vote
2answers
150 views

Java converting unix time to date different on each computer,why?

i have weird situation i have simple code that looks like this : Date d = new Date(1308670980000L); SimpleDateFormat f = new SimpleDateFormat("dd.MM.yyyy,HH:mm"); String s = f.format(d); some ...
0
votes
0answers
22 views

how to run “echo” - shell scrpit for getting sys/devices/system in un-rooted android devices

Run echo commands for updating sys/devices/system/cpu/cpu0/cpufreq/scaling_min_freq by using filesystem in javacode program for un-rooted Android Devices but i am able to read that file but notable ...