A part of my program needs to simulate a GPS. So I am setting up a client-server connection. Where on server my main application would run and on client it would send the GPS string periodically after a particular time interval. I am using JAVA for programming it and I am a bit new to networking area, so if someone can just give me an idea about How do i send my data PERIODIACALLY? the emphasis is on just one part... Periodically after a time interval.

Thanks.

link|improve this question
feedback

4 Answers

up vote 0 down vote accepted

Add a java timer to your code that triggers at the interval you specify. In the timer handler, just run some code to send data to the server.

link|improve this answer
feedback

you can use TimerTask Class for your solution. Here is a very useful link for its example.

In its run method you need to deploy your uploading code. I am also working on same kind of project right now.

link|improve this answer
Lucifer...thanks...was never aware of this class... i think i would upload my client code in the run method... let's see if that works – user1164829 Jan 23 at 18:16
I was wondering if we can just use sleep or wait for the main thread... won't that work?? – user1164829 Jan 23 at 18:19
feedback

Use a TimerTask with a Timer.

link|improve this answer
Thanks man. glad u helpd .. – user1164829 Jan 23 at 18:17
feedback

Although your requirement might be simple enough, but i suggest you take a look into quartz scheduler.

It supports from plain simple timer tasks (like every minute or every xx seconds) to the more complex timing scenarios.

Here is one simple example that you can dive more deeply from the source code.

link|improve this answer
Thanks albert... i'll see to it. – user1164829 Jan 23 at 18:14
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.