The tag has no wiki summary.

learn more… | top users | synonyms

-7
votes
1answer
64 views

Time in milliseconds calculation

I have two string variables for timer i.e. String StartTimer1 = "00:00:00"; String EndTimer2 = "23:59:59"; Now , I need to calculate the time left from the present time (lets say if it is 05: ...
0
votes
1answer
30 views

Filter dates in milliseconds

Hello i have a DB (MongoDB) with many entries with a date in milliseconds. I want to extract all the entries that have a date between 6:00 and 10:00 in the morning How can i do it? Is it possible to ...
0
votes
1answer
93 views

Get the time duration of an mp3 file in Seconds and MiliSeconds using java J2SE

I have successfuly played an mp3 file in java desktop app now what i want is to know that is it possible for me to get the total time duration of an mp3 file playing to be played. So that i can manage ...
0
votes
1answer
96 views

bash, get current time in milliseconds since midnight

Is there a way to get the current milliseconds past midnight in bash? And if there is a way to do it entirely in bash, how good or bad is the precision of that timestamp?
0
votes
1answer
70 views

Issue with SimpleDateFormat's milliseconds

I tried this snippet code and the output is very surprising. Why the output is different from the input? Did I make a mistake or is there a problem with SimpleDateFormat? SimpleDateFormat sdf = new ...
1
vote
1answer
35 views

Eventlog Generated Time Format - Millisecond

i created an eventlog entry: if (!EventLog.SourceExists("testeventlog")) EventLog.CreateEventSource("testeventlog","testeventlog"); EventLog.WriteEntry("testeventlog", "testevent"); ...
0
votes
3answers
121 views

Get DateTime.Now with milliseconds precision

how can I exactly construct time stamp of actual time with milliseconds precision? I need something like 16.4.2013 9:48:00:123. Is this possible? I have application, where I sample values 10 times per ...
-1
votes
2answers
158 views

jQuery stopwatch with milliseconds and spacebar as trigger [closed]

I've just started with 'learning' jQuery, so I almost know nothing. But, I want a stopwatch, showing minutes, seconds and milliseconds. I'd like to start the timer by pressing spacebar, and also stop ...
0
votes
1answer
75 views

Datetime force milliseconds

I have a WCF service that returns data as JSON. I have a problem where datetime cuts milliseconds when it's 00. How can I force datetime to not cut the milliseconds? I want to return it as a ...
1
vote
1answer
51 views

How to play a sound in java from the millisecond X

I have a problem, I wanna play a sound (or music file) for example from the second 10 to the 12, it is possible to make an function like soundObject.play(10000,12000); ? actually i'm testing sound ...
0
votes
1answer
54 views

Countdowntimer Textview

I created this app and now I wanted to use a textview to show the seconds until the other activity starts but I don't know how,I created a txtview inside the countdowntimer but its never shown ...
1
vote
4answers
153 views

subtracting two days from current date in epoch milliseconds java

I am trying to do something really simple. I am trying to subtract 2 days from the current day. I get the number of hours from the UI. So in this example, I get 48 hours from the UI. I am doing the ...
4
votes
2answers
316 views

How to retrieve microseconds or milliseconds from MySQL current time?

I am trying to create my first stored function on MySQL. In this function I want to return the timestamp of the current date and time with 3 microsecond digits like this: YYYYMMDDHHMMSSZZZ I use this ...
1
vote
3answers
394 views

Convert milliseconds to Timestamp

I know that to convert a Unix timestamp in milliseconds to an SQL timestamp I can use SELECT TO_DATE('1970-01-01','YYYY-MM-DD HH24:MI:SS') + (:timestamp / (1000*60*60*24)) FROM DUAL; But I ...
0
votes
2answers
107 views

C# SQL insert into with millisecond [duplicate]

i m using C# 4.0 and SQL server 2008 R2 i have a C# script like this: string sSql = ""; foreach (var oItem in LeListVoit_End) { //insert into Lettrvoit if (sSql != "") sSql += " UNION ALL "; ...
0
votes
1answer
76 views

How to convert pixels(Display width of phone) to milliseconds(ms)?

I am trying to draw a graph for a recorded sound using the byte array fetched from the file and trying to set it as a background for a seek bar. I had succeeded to draw till the amount shown above, ...
8
votes
3answers
142 views

Converting string to milliseconds

I want to calculate the time difference between two dates (in the format "yyyyMMddHHmmss"). The basic idea is to first convert the string date into milliseconds and then get the time difference. ...
0
votes
1answer
147 views

Get milliseconds from date Flex

Hi i have a csharp application and a flex application and in both i get the currentdatetime and format it. The millisecoonds i get in my flex application seem to be legging behind in comparison the ...
0
votes
1answer
457 views

i want Countdown timer in HH:MM:SS format in android

am trying to develop countdown timer in android. In this example am entering number of minutes as a parameter which shows in countdown timer Problem is that suppose am entering minute say 65, then ...
1
vote
5answers
138 views

Incrementing date by 18years in java

1.I want to set the setMaxSelectableDate=18years in JDateChooser so i provided it the date by incrementing milliseconds but how should i increment it by 18years. 2.Incrementing by 18years the ...
0
votes
0answers
61 views

Android NEXT_ALARM_FORMATTED String to Milliseconds

Right now I'm able to get the Next Alarm in a String value. I would like to get it in milliseconds. Here is what I've tried but it doesn't work. Also I use Locale.US but would like it work for any ...
1
vote
1answer
143 views

Java: calendar.setTimeInMillis() returns wrong HOUR_OF_DAY value

I am trying to convert my time in minutes to HH:MM. For example 418minutes = 6:58. I am using following code: long milli = PriemCas*60000; Calendar calendar1 = Calendar.getInstance(); ...
0
votes
2answers
196 views

Converting string time into milliseconds

I have a set of individual json data, they each have a time stamp for when it was created in this exact format e.g. [ {"Name": "Jake", "created":"2013-03-01T19:54:24Z" }, {"Name": "Rock", ...
1
vote
3answers
432 views

Big difference on System.currentTimeMillis()

I'm using this little piece of code to test what method is faster: public void test() { long start = System.currentTimeMillis(); MyDate date = new MyDate(); int max = 5000; for (int i = 0; i ...
0
votes
0answers
39 views

Python & Pygame - Loop sometimes misses when a timer event has occurred on slow PC or large program

I am making a small program that uses timers. When the timer hits 0 to 1/1000th of a second (this is default to the set_timer thingy), it makes an event occur. And an if formula says "if this event ...
-2
votes
1answer
144 views

Loop every 500 milliseconds without lag

How can I do this in a WinForms app? I've tried it with a System.Windows.Forms.Timer, but when i minimize the application, I can't maximize it again. It lags up the app. I'm using the .Interval ...
0
votes
0answers
50 views

How can I format this date? 2013-02-13T19:25:27.1381035-06:00

I am getting a feed that looks like this: 2013-02-13T19:25:27.1381035-06:00 And I am setting it to an NSDate like this: NSDate *endDate = [tempFormatter1 dateFromString:myEndDateString] Can I use ...
1
vote
4answers
359 views

Delphi - How to make timer in milliseconds or nanoseconds with start/stop functions?

I am looking for a timer in milliseconds or nanoseconds in Delphi7. I have to check the speeds of three ISAM files with sequential search. The first ind file contains 50 strings like "record_0" to ...
1
vote
2answers
147 views

TOD clock time to java.util.Date or milliseconds

I've a database table, which is filled with data from a mainframe via ETL. One column of that table is called "TOD" as in Time-Of-Day. This columns stores values such as : "CAE7631DC43DC686" ...
0
votes
2answers
721 views

C Program to sleep for millisecond in windows, linux, solaris, hpux, IBM AIX, Vxworks, windriver linux

I have to write a C program which has to sleep for millisecond which has to run on various platform like windows, linux, solaris, hpux, IBM AIX, Vxworks, windriver linux In windows sleep system call ...
0
votes
1answer
162 views

Handling an update loop using C++ Chrono?

I'm definitely a bit lost with the new C++ chrono library. Here I have an update loop. It runs two operations: engine.Update() engine.Render() These are long operations, and it's hard to tell how ...
0
votes
2answers
107 views

Android Calendar Showing Wrong Time

I have an alarm application and I store alarms into the databse. All alarms work well and the values (miliseconds) are stored as the correct number. Now I'm trying to display those times from my ...
2
votes
3answers
160 views

Android - checking if time is between certain hours of the day

in my app I'm updating some stuff if the time is between certain hours of the day which the user choose. It works fine if the user chooses something like "07-21", but not with "21-07" which is over ...
-1
votes
1answer
87 views

A Time object being converted to epoch and back loses its milliseconds in Ruby

I seem to have found a bug in Ruby, but I'm not sure so I'm posting it here. I have a Rails app that fetches the latest objects after a given timestamp, which is the timestamp of the last object ...
0
votes
2answers
231 views

Java: Convert long time of day to timestamp

I have a long value that represents the time of day in milliseconds since midnight that day. i.e. 00:00:01 would be 1000. I want to convert this to a long timestamp since the epoch - using the ...
0
votes
3answers
234 views

How to convert current date and time format in milliseconds(only 10digits)?

I have converted date format in milliseconds and time format in milliseconds. I am getting current time in more than 13 digits. CurrentTime= 1357755780000, StartingTime=1357602840, ...
1
vote
2answers
134 views

compare date with millisecond in android

I have date in this format "23-March-2003" and time in milliseconds which include date+time. Now I want compare this date with millisecond either it is same date or not. how can I do this??
0
votes
3answers
152 views

How to show date and time from milliseconds in Android?

I want to display the date of a trip. In the application several trips are listed, each has a long value with the currentTimeMillis of its generation. I want to turn this long number into a date but ...
-1
votes
1answer
73 views

1357133639816 milliseconds conversion in PHP 5.3 [duplicate]

I have looked every where for a solution to convert 1357133639816 milliseconds into dd-mm-yyyy h:m:s using PHP 5.3 and also convert current server time into the same millisecond format as given above. ...
1
vote
1answer
529 views

H2 database string to timestamp

Insertion of timestamps in H2 database Hello, I have to insert data like '17-09-2012 18:47:52.69'. Function PARSEDATETIME cuts milliseconds. Query example: CREATE TABLE TEST(ID NUMBER(19) not null, ...
2
votes
1answer
138 views

Converting date to milliseconds is giving inconsistent results in Android (java)

I'm trying to work with a calendar in android, and when I try to convert a date into milliseconds, I get different results on different runs. When I print out the values of milliseconds1 and ...
0
votes
2answers
635 views

Convert Milliseconds to Seconds with Precision

What I would like to be able to do in Java is to convert for example 1500ms to 1.5s, or 500ms to 0.5s. I could do Double.parseDouble(500 / 1000 + "." + 500 % 1000); but that isn't the best way to do ...
0
votes
1answer
102 views

Converting MIDI-deltatimes to seconds

my goal is to retrieve the exact note on/off timings from a Standard-MIDI-File. The file is type 1 (it has several tracks) and timing mode is ticks-per-quarter. My approach: I search for ...
2
votes
3answers
73 views

comparing millliseconds with data in android

I have data+time in saved in database (sq lite) in milliseconds, now I want to get data from sq-lite of a specific date and I have date in this format "26-December-2012", how to compare this with ...
7
votes
2answers
164 views

Colon in date format between seconds and milliseconds. How to parse in R?

How can I parse this date format? Should I change this colon to dot or maybe someone know better solution? > x <- "2012.01.15 09:00:02:002" > strptime(x, "%Y.%m.%d %H:%M:%S:%OS") [1] ...
1
vote
1answer
599 views

How do you specify the date format used when JAXB marshals xsd:dateTime?

When JAXB marshals a date object (XMLGregorianCalendar) into an xsd:dateTime element how can you specify the format of the resulting XML? For example: The default data format is uses milliseconds ...
2
votes
2answers
65 views

Why does TimeSpan.Milliseconds evaluate to 0?

Why does TimeSpan.FromSeconds(30).Milliseconds evaluate to 0 when it would seem more correct for it to evaluate to 30000?
1
vote
3answers
539 views

Conversion of DateTime into milliseconds

I want to convert Date+Time into milliseconds. i am using this code to convert them. final TimePicker time = (TimePicker) findViewById(R.id.timePicker1); final DatePicker date = (DatePicker) ...
0
votes
2answers
132 views

SSIS how to set milliseconds to be zero?

I need to set fractional seconds of timestamp value to be zero. E.g. Set "2012-11-10 14:57:43.147" to be "2012-11-10 14:57:43.000" How could I do this in SSIS expression? Thx!
1
vote
2answers
163 views

How do I store time in a variable?

One of my classes Event will have an instance field which is called timeStamp. Now, I have another class which will set the timeStamp according to some other algorithm which is not really relevant ...

1 2 3