Vector/Hashtable Original classes before the introduction of Collections API. Vector & Hashtable are synchronized. Any method that touches their contents is thread-safe. ArrayList/HashMap So...
If u r using jsp then ur form should look like thisand a file upload tagand from the java side use the any open source file reader likeimport org.apache.commons.fileupload.*;which will read the file from http request contentRegardsRamesh
Iterator is a class that is used to traverse through the objects maintained by a container class.these are five types are:-1.Input iterator2.output iterator3.forward iterator4.bidirectional iterator5....
Sincerity towards a work I do it until I finish it. And my weakness is am too much sincere which makes other work on pending as I am a person who believe in completing one work first and jump into oth...
Serialization is the mechanism of converting the state of an object to stream of bytes to a persistant storage area(file). By making an object serializable we are making the object as network enabled.Rajesh
Two modes of parameters are available to pass the parameter In and Out, the default parameter is IN.
In : Lets you pass a value to subprogram being called.It can not be changed inside the parameter(...
IN (default): Passes a constant value from the calling environment into the procedureOUT :Passes a value from the procedure to the calling environmentIN OUT :Pa...