Question:
java progam for automation?
mohammed w
2006-01-19 02:03:02 UTC
My project involves downloading some data from the clients website, run some validations on the data,upload the data in DB, run a few other java programs so that the data is stored in correct format in DB and is available properly on the clients website.

Right now we have a set of 8-10 programs that I have to run manually like first run the java code for validating the data, then run the java code for uploading to DB and so on .

My boss has asked me to automate the whole procedure so that i write on java class which when compiled and run, should be able to run all the 8-10 java programs....basically automate the whole procedure so that the client can do it himself.i.e. just run the new java class and all the 8-10 java programs should run and data is stored in DB and available on website . so how do i write a java class so that all other java programs are executed when we execute this new java class. Please give very clear details cuz i am new to java .Reply ASAP Thanks a lot.
Three answers:
soemirno
2006-02-08 11:59:28 UTC
You could use ANT instead.
?
2016-12-18 09:19:45 UTC
...and you're caught the place? interior the 'super photograph' of programming, this may well be an rather trouble-free job which you should be waiting to end on your individual with minimum education (and a huge help out of your text fabric e book); it includes taking enter, parsing enter, then returning output. No heavy lifting math-sensible and the NumberFormat classification is rather at present-forward. What have you ever tried?
Tanaeem
2006-01-19 08:17:47 UTC
why not write a new class and call main method of other classes in order needed.

That is in main metod of new class put a code which will be somthink like this

Download.main(null);

validate.main(null);

..............

..............

..............

Sore.main(null);


This content was originally posted on Y! Answers, a Q&A website that shut down in 2021.
Loading...