标题暗示我正在尝试将文件上传到本地服务器,为此我正在使用JSP和uploadify(基于闪存的jquery上传器)。 我已经成功使用glassfish服务器3.1上传文件,这是我的HTML代码:
</head>
<body>
<table>
<tr>
<td>
<input id="file_upload" name="file_upload" type="file" />
<script type="text/javascript">
$('#file_upload').uploadify({
'uploader' : 'uploadify/uploadify.swf',
'script' : 'UploadFile/uploadFile.jsp',
'cancelImg' : 'uploadify/cancel.png',
'multi' : true,
'auto' : false,
'onComplete' : function(fileObj)
{
alert (fileObj.filePath); //The path on the server to the uploaded file
}
});
</script>
</td>
<td>
<a href="javascript:$('#file_upload').uploadifyUpload($('.uploadifyQueueItem').last().attr('id').replace('file_upload',''));">Upload Last File</a>
</td>
</tr>
</table>
</body>
这是我的服务器端脚本:
<%@ page import="java.io.*" %>
<%
String contentType = request.getContentType();
if ((contentType != null) && (contentType.indexOf("multipart/form-data") >= 0)) {
DataInputStream in = new DataInputStream(request.getInputStream());
int formDataLength = request.getContentLength();
byte dataBytes[] = new byte[formDataLength];
int byteRead = 0;
int totalBytesRead = 0;
while (totalBytesRead < formDataLength) {
byteRead = in.read(dataBytes, totalBytesRead, formDataLength);
totalBytesRead += byteRead;
}
String file = new String(dataBytes);
String saveFile = file.substring(file.indexOf("filename=\"") + 10);
saveFile = saveFile.substring(0, saveFile.indexOf("\n"));
saveFile = saveFile.substring(saveFile.lastIndexOf("\\") + 1, saveFile.indexOf("\""));
int lastIndex = contentType.lastIndexOf("=");
String boundary = contentType.substring(lastIndex + 1,contentType.length());
int pos;
pos = file.indexOf("filename=\"");
pos = file.indexOf("\n", pos) + 1;
pos = file.indexOf("\n", pos) + 1;
pos = file.indexOf("\n", pos) + 1;
int boundaryLocation = file.indexOf(boundary, pos) - 4;
int startPos = ((file.substring(0, pos)).getBytes()).length;
int endPos = ((file.substring(0, boundaryLocation)).getBytes()).length;
FileOutputStream fileOut = new FileOutputStream(saveFile);
fileOut.write(dataBytes, startPos, (endPos - startPos));
fileOut.flush();
fileOut.close();
%>
<table>
<tr>
<td>
<b>File uploaded:</b>
<% out.println(saveFile);%>
</td>
</tr>
</table>
<%} else {
out.println(contentType.indexOf("multipart/form-data"));
out.println(request.getContentType());
%>
<br/> error <% } %>
所以我的问题是,是否可以更改默认文件夹以上传内容? 例如:我现在的默认文件夹是C:\ Users \ USERNAME.netbeans \ 7.0 \ config \ GF3 \ domain1是否可以将其更改为C:\ Users \ USERNAME \ Desktop?
如果我对此问题不够清楚,请随时说出来,非常感谢任何帮助,谢谢。
答案 0 :(得分:2)
我的默认文件夹现在是C:\ Users \ USERNAME.netbeans \ 7.0 \ config \ GF3 \ domain1是否可以将其更改为C:\ Users \ USERNAME \ Desktop?
您的默认目录恰好是domain1目录,因为您没有在以下行中指定文件的绝对路径:
FileOutputStream fileOut = new FileOutputStream(saveFile);
如果没有绝对路径,文件将保存在相对于Java进程当前工作目录的位置,对于Glassfish应用程序服务器,该文件恰好是域目录。指定绝对路径后,您就可以将上传的文件保存到您选择的位置。
另外请注意以下几点:
@MultipartConfig
注释来处理文件上传请求; Tomcat 7和Glassfish 3.1依赖于编写良好的Apache Commons Fileupload库来处理多部分POST请求。这样,您就不必担心自己处理请求了。您可以自己检索各个零件,然后将gruntwork留在容器中。