The Artima Developer Community
Sponsored Link

Java Answers Forum
problems with jakarta commons fileupload

0 replies on 1 page.

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 0 replies on 1 page
Joseph Sweet

Posts: 1
Nickname: josephs
Registered: Jan, 2005

problems with jakarta commons fileupload Posted: Jan 29, 2005 11:52 AM
Reply to this message Reply
Advertisement
Hello,

I was reading an article about the org.apache.commons.fileupload component
here:
http://www.onjava.com/pub/a/onjava/2003/06/25/commons.html?page=3

and it just seems not to work for me. I would appreciate your help.

I am using the jar file commons-fileupload-1.0-dev.jar that was downloaded from here:
http://cvs.gridsphere.org/cgi-bin/viewcvs.cgi/gridsphere/lib/Attic/commons-fileupload-1.0-dev.jar

I work on eclipse and it does not compile.

The first problem is that it cannot find the method isMultipartContent in the following code (taken from that article

example):

// first check if the upload request coming in is a multipart request
boolean isMultipart = FileUpload.isMultipartContent(request);

I am looking in the eclipse into that jar and it seems like that method is really not in the FileUpload class.

What is wrong?

It is there in the source code, so why not in the class found in the far file.



By the way, when I looked at the jakarta reference here:
http://jakarta.apache.org/commons/fileupload/apidocs/index-all.html

and they say this method is deprecated:

"isMultipartContent(HttpServletRequest) - Static method in class org.apache.commons.fileupload.FileUploadBase
Deprecated. Use the method on ServletFileUpload instead."

So why do they use it in your code.


Also, they say "Use the method on ServletFileUpload instead".

That class is suppposed to be in the package:
import org.apache.commons.fileupload.servlet.*;

But there is not such a subdirectory in the zip source code I downloaded from the jakarta project.

Could you please help me solve these problems.

Thank you,
Joseph

Topic: Thread Cooperation Previous Topic   Next Topic Topic: jTDS JDBC Driver 1.0 released

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use