What exactly have you tried? And why do you want to avoid a well-debugged library like Jakarta Commons FileUpload? This is a non-trivial thing to develop, so be prepared to become very familiar with the HTTP specification and spend quite a bit of time on it.
There aren't many rules that you need to worry about here on the Ranch, but one that we take very seriously regards the use of proper names. Please take a look at the JavaRanch Naming Policy and adjust your display name to match it.
In particular, your display name must be a first and a last name separated by a space character, and must not be obviously fictitious.
Originally posted by anil mothea: ... With out using any third party controls.
The servlet spec provides no support for multipart requests (uploads). To do this without using third party controls, you would need to implement all the same functionality that the third party controls have already implemented.