Struts2 上传文件主要代码
发布时间:2020-05-25 14:00:25 所属栏目:Java 来源:互联网
导读:Struts2 上传文件主要代码
|
下面是脚本之家 jb51.cc 通过网络收集整理的代码片段。 脚本之家小编现在分享给大家,也给大家做个参考。 public File file; //与页面上的 input file 标签的name 一样
public String name;
/**
* 上传文件公共方法
* @param url 地址
* @param ext 后缀名
* @return 上传成功
*/
public boolean file(String url,String ext) {
response = getResponse();
InputStream input = null;
long time = System.currentTimeMillis();
OutputStream os = null;
try {
System.out.println(name);
SystemParameter systemParameter = (SystemParameter) getRequest()
.getSession().getServletContext()
.getAttribute("systemParameter");
String path = systemParameter.getFilePath() + url ;
String houzui = name.substring(name.lastIndexOf("("),name.length());
if (houzui.equals("(空白)")) {
name=name.substring(0,name.indexOf("("));
}
if (name.equals("流程图")) {
name="liuchen";
}
// 检查文件是否存在
File f = new File(path,name+ ext);
if (f.exists()) {
System.out.println(f.getAbsolutePath());
System.out.println(f.getName());
String newName = path + name + "old_" + time
+ ext;
System.out.println(newName);
boolean is = f.renameTo(new File(newName));
if (is == false) {
f.renameTo(new File(path + name + ext));
return false;
} else {
// 如果存在,在读一次改过文件的名字,如果新的名字不存在,就提示上传失败
File file = new File(newName);
if (!file.exists()) {
return false;
}
}
}
input = new FileInputStream(file);
os = new FileOutputStream(f);
byte[] by = new byte[1024];
int length = input.read(by);
while (length != -1) {
os.write(by,length);
length = input.read(by);
}
return true;
} catch (Exception e) {
// TODO: handle exception
e.printStackTrace();
} finally {
try {
if (input != null)
input.close();
if (os != null)
os.close();
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
以上是脚本之家(jb51.cc)为你收集整理的全部代码内容,希望文章能够帮你解决所遇到的程序开发问题。 如果觉得脚本之家网站内容还不错,欢迎将脚本之家网站推荐给程序员好友。 (编辑:安卓应用网) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |
