DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUGĀ·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=38490>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED ANDĀ·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=38490

           Summary: filename drops case
           Product: Commons
           Version: 1.1 Final
          Platform: PC
        OS/Version: Windows XP
            Status: NEW
          Severity: normal
          Priority: P2
         Component: File Upload
        AssignedTo: [email protected]
        ReportedBy: [EMAIL PROTECTED]


When I'm iterating over a set of FileItems, the getName method returns the
source filename in all lowercase.

I did a little inner-class extension of the ServletFileUpload class as follows :

FileUpload fu = new ServletFileUpload(factory) {
  protected java.lang.String getFileName(java.util.Map headers)
  {
    String fn = super.getFileName(headers);
    log(fn + " :: " + headers.toString());
    return fn;
  } 
};

in my tomcat (5.5) log, I get entries like this :

c:\program files\samples\scrolling.fla] :: {content-length=36864,
content-disposition=form-data; name="userfile[21]"; filename="C:\Program
Files\Samples\Scrolling.fla", content-type=application/octet-stream}

so it appears as if the filename in the headers is correctly case sensitive, but
the getFileName method is returning the filename in all lowercase... ?

thanks in advance, and if there is anything else I can provide, please let me 
know.

-daniel

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to