`
jinxhj2003
  • 浏览: 148458 次
  • 性别: Icon_minigender_1
  • 来自: 南昌
社区版块
存档分类
最新评论

struts2上传文件

阅读更多
file对象
在类写出对应的fileFileName则为该图片的名称,
fileFileUploadType则为该图片上传的类型
package cn.struts.admin;

import com.opensymphony.xwork2.ActionSupport;
import cn.jxsme.hibernate.service.articleService;
import cn.jxsme.hibernate.service.categoryService;
import cn.jxsme.hibernate.model.Article;
import cn.jxsme.hibernate.model.Category;
import cn.jxsme.springsideDao.Page;
import cn.jxsme.hj.util.PageMessage;
import cn.jxsme.hj.util.FileUtilsMyExit;
import java.io.File;
import java.io.IOException;
import java.util.List;
import org.apache.commons.io.FileUtils;
import org.apache.struts2.ServletActionContext;
/*
* autho huangjin green eat 
*Jan 4, 2009
*/
@SuppressWarnings("serial")
public class newsManage  extends ActionSupport{

private articleService articleService;//新闻业务类

private categoryService categoryService;//新闻父类业务类

private File file;//上传文件对象

private String fileFileName;//上传文件名

public List<Article> list;//新闻类list

public List<Category> listCategory;//新闻分类结果

public String pageLast;//分页信息

public String page;//当前页

public String categoryId;//当前分类的id


/**
* 一些get 和 set 方法
* @return
*/


public articleService getArticleService() {
return articleService;
}

public void setArticleService(articleService articleService) {
this.articleService = articleService;
}



public String shownews(){
// 判断当前页面输入的合法性
if(!(cn.jxsme.hj.util.IntToString.checkId(this.getPage()))){
   this.setPage("1");
}
String hql ="from Article";
if(!("".equals(this.getCategoryId())|| null ==this.getCategoryId())){
hql = "from Article where category="+this.getCategoryId();
}
// String hql ="from Article where category=1";
Page page = articleService.getArticleListByPage(hql, Integer.parseInt(this.getPage()), 20L,null);
list = (java.util.List<Article>)page.getResult();
this.setPageLast(PageMessage.page("newsManage.action?", page.getTotalPageCount(), page.getTotalCount(), page.getCurrentPageNo()));
return SUCCESS;
}
/**
* 新闻添加链接
* @return
*/
public String newsAddShow(){
listCategory = categoryService.getAllCategory();
return "newsAddShow";
}
    /**
     * 用户新闻添加
     * @return
     */
public String newsAdd(){
listCategory = categoryService.getAllCategory();
if(null != this.getFile()){
String fileName=cn.jxsme.hj.util.fileUploadUtil.getFileName(this.getFileFileName());
String filePath=cn.jxsme.hj.util.fileUploadUtil.createFilePath(this.getRealpath("/uploads/"));
System.out.println(filePath);
this.uploadImage(file, filePath, fileName);
this.setFile(null);
}
return "newsAdd";
}
/**
* 图片上传类
* @param file 上传的文件
* @param fileUp 上传的图径
* @param imgName 图片的名称
*/
public void uploadImage(File file,String fileUp,String imgName){
try {
FileUtils.copyFile(file, new File(fileUp,imgName));
} catch (IOException e) {
throw new cn.jxsme.exception.BaseException("上传文件出错:"+e);
}
}

public List<Article> getList() {
return list;
}

public void setList(List<Article> list) {
this.list = list;
}

public String getPageLast() {
return pageLast;
}

public void setPageLast(String pageLast) {
this.pageLast = pageLast;
}

public String getCategoryId() {
return categoryId;
}

public void setCategoryId(String categoryId) {
this.categoryId = categoryId;
}

public String getPage() {
return page;
}

public void setPage(String page) {
this.page = page;
}

@Override
public void validate() {
// TODO Auto-generated method stub
//判断当前输入的id 是否合法
if(cn.jxsme.hj.util.IntToString.checkIdSafe(this.getCategoryId())){
throw new cn.jxsme.exception.BaseException("输入不合法");
}
super.validate();
}

public categoryService getCategoryService() {
return categoryService;
}

public void setCategoryService(categoryService categoryService) {
this.categoryService = categoryService;
}

public List<Category> getListCategory() {
return listCategory;
}

public void setListCategory(List<Category> listCategory) {
this.listCategory = listCategory;
}

public File getFile() {
return file;
}

public void setFile(File file) {
this.file = file;
}



public String getFileFileName() {
return fileFileName;
}

public void setFileFileName(String fileFileName) {
this.fileFileName = fileFileName;
}

/**
* 取得网站相对路径的物理路径
* @param path 相对路径
* @return
*/
public String getRealpath(String path){
return ServletActionContext.getServletContext().getRealPath(path);
}

}
分享到:
评论

相关推荐

    struts2上传文件源代码

    在这个“struts2上传文件源代码”中,我们将深入探讨Struts2如何实现文件上传功能,以及涉及到的相关知识点。 首先,文件上传是Web应用中常见的功能,它允许用户从本地计算机选择文件并将其发送到服务器。在Struts2...

    Struts2 上传文件

    ### Struts2 上传文件详解 #### 一、文件上传的原理 在Web开发中,文件上传是一项常见的功能需求。Struts2框架提供了强大的支持来处理这类操作,尤其是在处理文件上传方面有着简单而灵活的方法。 ##### 1. 表单...

    struts2上传文件进度条显示

    这里我们启用了multipart/form-data类型的数据解析,并设置了最大上传文件大小为20MB。 接下来,创建一个Action类来处理文件上传请求。这个类需要继承自`org.apache.struts2.dispatcher.multipart....

    Struts2上传文件(直接用request)

    Struts2上传文件(直接用request)

    struts2 上传文件超过最大值解决办法

    在Struts2框架中,处理文件上传是一项常见且重要的功能,尤其当涉及到大文件上传时,往往会遇到上传文件大小超过预设限制的问题。这不仅影响用户体验,还可能导致应用程序出现异常或错误。本文将深入探讨如何解决...

    struts2 上传文件及打包下载zip

    在这个"struts2 上传文件及打包下载zip"的示例中,我们将探讨如何利用Struts2实现文件上传和下载功能。 首先,文件上传是Web应用程序中的常见需求。在Struts2中,我们可以使用`Struts2`提供的`CommonsFileUpload`...

    Struts2上传文件

    在Struts2中,文件上传功能是一个常见的需求,它允许用户从客户端上传文件到服务器端进行处理或存储。本篇文章将深入探讨Struts2中的文件上传机制,包括单个文件上传和多个文件上传。 ### 单个文件上传 #### 1. ...

    struts2上传文件及拦截器

    struts2上传单个文件及多个文件,strus2拦截器的使用,里面有个user用户,先执行user.jsp即登陆,可以执行上传文件的操作,反之,不能,有个exit.jsp,退出之后不能执行。里面含有jar文件,导入myeclipse可以执行...

    struts2上传文件、生成缩略图、添加文字和图片水印

    以上就是关于"Struts2上传文件、生成缩略图、添加文字和图片水印"的主要知识点,理解并掌握这些技术可以帮助开发者实现高效、安全的图片处理功能。在实际项目中,应根据具体需求灵活运用,并不断优化以提高用户体验...

    struts2实现文件上传下载

    `FileInfo`是自定义的类,包含`File`对象和`String`对象,分别表示上传文件的实际内容和文件名。 1. **配置Struts2的文件上传** 在`struts.xml`配置文件中,为需要支持文件上传的Action添加`params`和`fileUpload`...

    Struts2上传文件源码

    总结一下,这个"Struts2上传文件源码"示例主要涵盖了以下知识点: 1. Struts2的拦截器机制和`FileUploadInterceptor`。 2. 配置文件中启用文件上传拦截器。 3. 创建Action类处理文件上传,包括接收和处理上传文件。...

    解决Struts2上传文件后文件大小变大

    ### 解决Struts2上传文件后文件大小变大的方法 #### 背景与问题描述 在使用Struts2框架进行文件上传时,有时会遇到一个棘手的问题:上传后的文件大小比原始文件大。这不仅增加了服务器的存储负担,还可能导致其他...

Global site tag (gtag.js) - Google Analytics