Is your first name really "january"? If not, we have a
policy on screen names here at JavaRanch. Basically, it must consist of a real-sounding first name and last name, and not be obviously fictitious. If yours does not conform with it, please take a moment to change it, which you can do using the "My Profile" link at the top of the page.
Obviously, you need to have the FileUpload jar file in the WEB-INF/lib folder of your web app. It's usually called something like "commons-fileupload-1.2.1.jar".
It's also bad design to keep file I/O code in your JSP pages. It makes proper error handling (amongst other things) hard to do. You should move that code to a servlet instead.