Srikrishna DhumalRao

Greenhorn
+ Follow
since Oct 05, 2004
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Srikrishna DhumalRao

Hi,
I have a scenario where i have to "invoke a batch file which internally invokes ant" from a java program.I used
Runtime proc= Runtime.getRuntime();
Process process=proc.exec("cmd /c <batch file path>");
process.waitFor();

it is not opening a new command prompt window and also the batch file is not being processed. Can any one throw light in this aspect.

Thanks in Advance.
19 years ago
Hi,
I need to fetch records from the database(oracle) where long data type column is like a string in a java file.when i tried with column like 'string'it gives amessage " inconsistent datatypes".
can any one throw some light on this.
Thanks in advance.
Thanks Jeanne Boyarsky
I will follow the link
19 years ago
JSP
Hi all,
I need to generate an excel report from a JSP. Now, i am generating excel report by setting content type to application/vnd.ms-excel. But the problem is I wanted to have monthly report in one sheet and yearly report in the other sheet, which I am not able to accomplish. I will be grateful if someone throws light in this aspect.
Thanks in adance,
19 years ago
JSP
nope, We don't have any tool to design we have to draw in word only
Hi,
I am not much exposed to UML, now i have to prep a class diagram as part of my job. I will be much grateful if any one help me out in this.
I have three classes in a file.
first class has main method in which i started a thread.
second class has the run method in which i created instane for the third class and called the methods.
and third has methods which actually do my business.
Now I have to prepare the class diagram for this actually we are going in a reverse way after finishing all the coding we are asked to submit the class diagram.
thanks in advance
Hi,
I want to give the exam next month can anyone advice me which one will meet the purpose.Kathy's book helped me a lot for my scjp.
Thanks in advance,
srikrishna.
SCJP
Hi,
I have a scenario where I have to call another thread which has to take lock with it from one threads run method.Can anyone throw light in this matter.
Thanks in advance,
Hi,
I have to get the time in minutes from a date column in database.
I am using rs.getTime() which returns a java.sql.Time object .my problem is to convert it into minutes - is there any built in method for this job.
Thanks
19 years ago
Hi,
I have to get the time in minutes from a date column in database.
I am using rs.getTime() which returns a java.sql.Time object .my problem is to convert it into minutes - is there any built in method for this job.
Thanks
[ October 13, 2004: Message edited by: Srikrishna DhumalRao ]
19 years ago
Thanks for the reply . I am able to make up the solution
19 years ago
I have two datetime formats rpt_dt_time and cur_dt_time , I want to find the difference between these dates in hours and check wether it has crossed the estimated time and act accordingly.I am working on Oracle DB and Windows 2000 OS
19 years ago