the implementation of result set will be in driver class.not only the result set ,the interfaces that are specified in the JDBC API implementation is present in the driver class.Driver class is a cl...
After introduction of concurrency api in Java 1.5 we have one more way to synchronize a hashmap>> new java.util.concurrent.ConcurrentHashMap(hashmapObj);
We can do as given belowHashMap hm = new HashMap();
HashMap hm2 = (HashMap)Collections.synchronizedMap(hm);
ArrayList a1 = new ArrayList();
ArrayList a2 = (ArrayList)Collections.synchronizedList(...
You must use the tag <input type=file>Remember form tag must contain the following attribute enctype="multipart/form-data" then only it will validate file upload.if you want file upload servle code please mail me shaikmasthan@gmail.com
charanvv
Oct 20th, 2005
if u used MVC architecture u just usedin jsp<input type="file" > tagand in servlet use just used servletInput stream to get that fileand do whatever u want by using IO.api package