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

I was thinking of a design in which I have an xml file at particular location and I want that a particular period of time this xml should be picked and kept to the required location , so in other words I want to design a batch program with the help of quartz scehduler this is my analysis of running as batch job with quartz sceduler, Please also advise for other best approaches ..!!

I have to be more descriptive this time now , I have one xml file at one location on the server now I want to write a java class and in that class I want to write a logic that should be as batch job that is it will pick up the file from one location and will sent that file to another location and for controlling this class I want to implement a sceduler at what time this java batch class job will run, for this please advise what technologies will I required that will not make impact on the performance..!

share|improve this question
1  
unclear and too broad a question. You may want to add some specifics. Using quartz to run a scheduled activity is fine, as is using the Executor framework – aishwarya Aug 16 '12 at 17:26
@vikiiii please refer to the updated post...!1 – Crazy4Java Aug 16 '12 at 18:00

closed as not a real question by casperOne Aug 17 '12 at 1:52

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

Quartz or a simple Timer are good alternatives when you have a running application as is clearly explained in this answer. Unless you have other requirements not explicited in your question, I'd recommend using java Timer (example) as is much simpler than Quartz.

If you don't have a running application, you should just create a program that sends the XML file and just use something like the Windows Scheduler or Unix/Linux cron command to keep executing that program as desired. (Mentiones program can be written in Java or something else).

You could write a java program as a deamon or service to keep itself sending the file but from your question it doesn't seem necessary.

share|improve this answer

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