Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to write a basic client server using Java's DatagramSocket and DatagramPacket classes. I have the basic code set up, but I want a way to send 100 messages from my Client to my Server at regular intervals i.e. 1 sec, or 2 sec, or 5 sec.

Basically, I want something like:

while (count != 0)
sleep (1);
create message packet;
send message packet;
count--;

In C there's a sleep method, but I'm not sure how to do that in java. Anyone have any suggestions?

share|improve this question

3 Answers

You can always call Thread.sleep(), which is largely equivalent to the sleep function from C. But I would recommend an alternative route to accomplishing your program. Take a look at the ScheduledThreadPoolExecutor class, it allows you to schedule a piece of code to be run at regular intervals:

Runnable myCommand = new Runnable() {
    public void run() {
        // Do some work
    }
};

ScheduledThreadPoolExecutor executor = new ScheduledThreadPoolExecutor(4);
// Execute the command every second = 1000 milliseconds
executor.scheduleAtFixedRate(myCommand, 0, 1000, TimeUnits.MILLISECONDS);
share|improve this answer
Timer timer = new Timer();
timer.schedule(new Task(), 1000); //schedule the task to be run at 1 second (1000 mili sec) time

Here is the code for Task class

class Task extends TimerTask
{
    Task()
    {
    }

    public void run()
    {
        //create datagram socket
        //create datagram packet
        //send the packet
    }
}
share|improve this answer

Java is pretty high level than C. (of sourse you have thread libs in C too :), what i meant this is supported as java language support than libraries)

So, ypou can use Timer class.

Coming to the main fucntionality you will have something like

DatagramSocket socket = new DatagramSocket();
byte[] buf = new byte[256];
InetAddress address = InetAddress.getByName("sample-address");
DatagramPacket packet = new DatagramPacket
                    (buf, buf.length, 
                    address, 4445);
socket.send(packet); 

in that class implemeting TimerTask.

have to override a run method there.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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