| Author |
change file name
|
ramu av
Greenhorn
Joined: Feb 25, 2003
Posts: 28
|
|
hello, please see the following code. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <%@ page import="com.oreilly.servlet.MultipartRequest" %> <%@ page import="java.util.*" %> <%@ page import="java.io.File.*" %> <html> <head> <title>upload file test JSP</title> </head> <body> uploaded <br> <% MultipartRequest mr = new MultipartRequest(request,"c:/upload/",10000,?); %> </body> </html> the text book says: public MultipartRequest(javax.servlet.http.HttpServletRequest request, java.lang.String saveDirectory, int maxPostSize, FileRenamePolicy policy) throws java.io.IOException please teel me hoe to upload the clients file with a different filename. thanx in advance
|
 |
 |
|
|
subject: change file name
|
|
|