Aparna Yadav

Greenhorn
+ Follow
since Sep 13, 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 Aparna Yadav

Hi Wiliam,
I know that Servlet's destroy() is called by the servlet container to indicate that the servlet is being taken out of service.This method gives the servlet an opportunity to clean up any resources that are being held (for example, memory, file handles, threads) and make sure that any persistent state is synchronized with the servlet's current state in memory.

But then with this method we have got Object's finalize() method in the Servlet class.and it does the same job of releasing non mem resources.
So now can u pls tell in this when exactly destroy & finalize will be called & in which sequence.
And can i have both the methods implemented in my class then what code i shld write it in that.

Waiting for reply.
Thanks
Aparna.
19 years ago
I want to write a java application which will store BLOB type of data into an oracle table & same way retrieve it from table.
Can somebody pls tell me how to dispaly records from RecordSet into a JTable
I know for this we have to make use of Runtime class.
Actually i have got a sample code from net but that code is to execute javac command from the java application.
19 years ago