写这个程序之前是考虑想买点jsp空间做一个自己的下载站点的。但是看了看网上的报价后,jsp的空间费用要贵很多,只好想其他的办法来解决。现在就利用了ftp上传方式来解决这些问题,可以把资源上传到指定的任意服务器内。这样就不必担心空间费用的高昂了。
<%@ page language="java" import="com.jspsmart.upload.*" import="java.text.*,java.util.*,java.io.*,org.apache.commons.net.ftp.*"%>
<%@ page contentType="text/html;charset=GBK" %>
<jsp:useBean id="mySmartUpload" scope="page" class="com.jspsmart.upload.SmartUpload"/>
<%
int i=0;
int Size=0;
String FileName="",FileExt="",suffix="",name1="",newname="",path="",Fnewname="";
String ftpHostname="127.0.0.1"; //ftp主机地址
String ftpUser="ftp-username"; //用户名
String ftpPwd="ftp-password"; //密码
String ftpDir="/"; //ftp目录
FTPClient ftp=new FTPClient();
mySmartUpload.initialize(pageContext);
mySmartUpload.upload();
com.jspsmart.upload.File myFile = mySmartUpload.getFiles().getFile(i);
if(!myFile.isMissing()) {
Size=myFile.getSize();
FileName=myFile.getFileName();
FileExt=myFile.getFileExt();
path=myFile.getFilePathName();
suffix=FileName.substring(0,FileName.lastIndexOf('.'));
if(Size>=300000) {
out.print("<script language='javascript'>\n");
out.print("alert('上传的文件超过300KB,不能上传!');\n");
out.print("window.document.location.href='ring_add.jsp';\n");
out.print("</script>\n");
} else {
java.util.Date date = new java.util.Date();
SimpleDateFormat formatter1 = new SimpleDateFormat("yyyyMMddhhmmsss");
name1=FileName.substring(FileName.indexOf("."),FileName.length());
newname=formatter1.format(date)+name1;
myFile.saveAs("/mms/manager/uploads_temp/" + newname); //利用smartupload上传到jsp服务器上的一个临时文件夹内,需要根据自己的环境进行设置。
}
try {
ftp.changeWorkingDirectory(ftpDir);
ftp.setFileType(FTP.BINARY_FILE_TYPE); //以BINARY格式传送文件
Fnewname="C:\\Tomcat\\webapps\\ROOT\\mms\\manager\\uploads_temp\\"+newname+""; //这里需要给出的是文件所在本地机器的根目录路径,也就是myFile.saveAs的路径
FileInputStream f_in=new FileInputStream(Fnewname);
ftp.storeFile(newname,f_in); //存储文件到ftp的/file目录中。
f_in.close();
} catch(Exception e) {
e.printStackTrace();
}
//删除临时上传到程序所在服务器的文件,保证空间的合理利用。
String dir = "mms/manager/uploads_temp"; //需要根据目录的设置来修改
String s_direct = getServletConfig().getServletContext().getRealPath(dir);
java.io.File f = new java.io.File(""+s_direct+"/"+newname+"");
f.delete();
}
%>
说明一下,这里需要用到apache提供的一个commons-net包,在apache的官方网站就可以找到下载。放在common/lib文件目录下即可。我这里并没有检测对ftp服务器的连接性。需要的话可以自己添加上。