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

Just a quick question about the above subject. Basically, I'm writing a piece of software which captures data from the network and writes it to an external file for further processing.

What I want to know is what code would be the best to use in order to get this desired effect.

Thanks for your time

David

share|improve this question
Do you want to write the entire array contents out, or just new items? – Richard H Feb 18 '11 at 9:58
3  
Using files for messaging is possibly the worst way to pass data between applications I can think of. It sounds simple, but is basically an unreliable way to do this. – Peter Lawrey Feb 18 '11 at 10:04
@Peter Lawrey - I'd argue that was a wide sweeping generalisation. For actual messaging or inter-process communication sure, but not say where the received data are large text files that are to be batched processed by another system. – Richard H Feb 18 '11 at 10:15
Thanks for your comments. @Richard just new items if its possible. @Peter Lawrey sorry I didn't realise..I'm a real novice to all of this and don't know alot about Java. – David Caldwell Feb 18 '11 at 10:19
You can pass GBs of data through a messaging system easily. However when you pass files to another system, you have problem of knowing when the file(s) are complete, when the file(s) are no longer needed. If the files are on another machine, timing issues become more apparent as directories are not transactional (i.e files are all independent) – Peter Lawrey Feb 18 '11 at 10:20

3 Answers

up vote 6 down vote accepted

I'd probably implement it using a TimerTask. E.g.,

int hour = 1000*60*60;
int delay = 0;
Timer t = new Timer();

t.scheduleAtFixedRate(new TimerTask() {
    public void run() {
        // Write to disk ...
    }
}, delay, hour);

Otherwise quarts is a powerful java scheduler which is capable of handling more advanced scheduling needs.

share|improve this answer
Thanks Johan, this looks like a really simple way of implementing the code. – David Caldwell Feb 18 '11 at 10:20

You can use the Executor Framework, here is a sample implementation:

final List<String> myData = new ArrayList<String>();
final File f = new File("some/file.txt");

final Runnable saveListToFileJob = new Runnable(){

    @Override
    public void run(){ /* this uses Guava */
        try{
            Files.write(
                Joiner.on('\n').join(myData),
                f, Charsets.UTF_8);
        } catch(final IOException e){
            throw new IllegalStateException(e);
        }

    }
};
Executors
    .newScheduledThreadPool(1) /* one thread should be enough */
    .scheduleAtFixedRate(saveListToFileJob,
        1000 * 60 /* 1 minute initial delay */,
        1, TimeUnit.MINUTES /* run once every minute */);
share|improve this answer

The question probably needs a few more details. What part of the solution is causing you trouble?

  • The scheduling?
  • The reading from the network?
  • The persistence in a memory data structure?
  • The writing to a file?

You should also describe the problem domain a little bit more in detail since it might significantly affect any solution that might be offered. For example:

  • What is the nature of the data going over the network?
  • Does it have to be per minute? What if the network isn't done sending and the minute is up and you start reading?
  • What exactly does the ArrayList contain?
  • Can you describe the file output? (text file? serialized object? etc...)

Just an initial hunch on my part --some thoughts I would have when designing a solution for the problem you described would involve some kind of Producer-Consumer approach.

  • A Runnable/Thread object whose sole responsibility is to continuously read from the network, assemble the data and place it in a synchronized queue.
  • A Runnable/Thread object in a wait() state observing the synchronized queue. When signaled by the queue, it will start reading the contents of the queue for persistence to a file(s).
  • When there are items in the queue (or when a certain threshold is reached) it will notify() the waiting queue reader to start consuming the objects from the queue for persistence.

I maybe completely off base, but the fact that you're reading from the network implies some sort of unpredictability and unreliability. So instead of relying on timers, I would rely on the Producer of data (object reading from the network) signal the Consumer (the object that will use the data read from the network) to do something with the data.

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.