struts2中的actions接收不到前台form表单的值

struts2中的actions接收不到前台form表单的值,第1张

<s:form action="student_action" method="post">这句话里的

action属性的值,要根据Struts2的配置文件strutsxml里的设置来定:

比如strutsxml里是这样的:

<action name="student_action123" value="student_action"/>

那么页面里就应该写(假设是struts缺省包和默认命名空间):

<s:form action="student_action123action" method="post">

也就是说,提交表单时的目标是配置文件中action的name属性决定的。

加不加action后缀,可以看strutsxml里的配置常数

<constant name="strutsactionextension" value=",action"/>

来定,如这个设置就是加不加后缀都可以(好像是struts2的高版本都默认可以不加后缀)。

struts2单文件上传

首先是一个jsp文件上传页面,这个比较简单,就是一个表单,里面有个文件上传框

<!--在进行文件上传时,表单提交方式一定要是post的方式,因为文件上传时二进制文件可能会很大,还有就是enctype属性,这个属性一定要写成multipart/form-data,

不然就会以二进制文本上传到服务器端-->

<form action="fileUploadaction" method="post" enctype="multipart/form-data">

username: <input type="text" name="username"><br>

file: <input type="file" name="file"><br>

<input type="submit" value="submit">

</form>

接下来是FileUploadAction部分代码,因为struts2对上传和下载都提供了很好的实习机制,所以在action这段我们只需要写很少的代码就行:

public class FileUploadAction extends ActionSupport

{

private String username;

//注意,file并不是指前端jsp上传过来的文件本身,而是文件上传过来存放在临时文件夹下面的文件

private File file;

//提交过来的file的名字

private String fileFileName;

//提交过来的file的MIME类型

private String fileContentType;

public String getUsername()

{

return username;

}

public void setUsername(String username)

{

thisusername = username;

}

public File getFile()

{

return file;

}

public void setFile(File file)

{

thisfile = file;

}

public String getFileFileName()

{

return fileFileName;

}

public void setFileFileName(String fileFileName)

{

thisfileFileName = fileFileName;

}

public String getFileContentType()

{

return fileContentType;

}

public void setFileContentType(String fileContentType)

{

thisfileContentType = fileContentType;

}

@Override

public String execute() throws Exception

{

String root = ServletActionContextgetServletContext()getRealPath("/upload");

InputStream is = new FileInputStream(file);

OutputStream os = new FileOutputStream(new File(root, fileFileName));

Systemoutprintln("fileFileName: " + fileFileName);

// 因为file是存放在临时文件夹的文件,我们可以将其文件名和文件路径打印出来,看和之前的fileFileName是否相同

Systemoutprintln("file: " + filegetName());

Systemoutprintln("file: " + filegetPath());

byte[] buffer = new byte[500];

int length = 0;

while(-1 != (length = isread(buffer, 0, bufferlength)))

{

oswrite(buffer);

}

osclose();

isclose();

return SUCCESS;

}

}

首先我们要清楚一点,这里的file并不是真正指代jsp上传过来的文件,当文件上传过来时,struts2首先会寻找strutsmultipartsaveDir(这个是在defaultproperties里面有)这个name所指定的存放位置,我们可以新建一个strutsproperties属性文件来指定这个临时文件存放位置,如果没有指定,那么文件会存放在tomcat的apache-tomcat-7029\work\Catalina\localhost\目录下,然后我们可以指定文件上传后的存放位置,通过输出流将其写到流里面就行了,这时我们就可以在文件夹里看到我们上传的文件了。

文件上传后我们还需要将其下载下来,其实struts2的文件下载原理很简单,就是定义一个输入流,然后将文件写到输入流里面就行,关键配置还是在strutsxml这个配置文件里配置:

FileDownloadAction代码如下:

public class FileDownloadAction extends ActionSupport

{

public InputStream getDownloadFile()

{

return ServletActionContextgetServletContext()getResourceAsStream("upload/通讯录2012年9月4日xls");

}

@Override

public String execute() throws Exception

{

return SUCCESS;

}

}

我们看,这个action只是定义了一个输入流,然后为其提供getter方法就行,接下来我们看看strutsxml的配置文件:

<action name="fileDownload" class="comxiaoluostruts2FileDownloadAction">

<result name="success" type="stream">

<param name="contentDisposition">attachment;filename="通讯录2012年9月4日xls"</param>

<param name="inputName">downloadFile</param>

</result>

</action>

strutsxml配置文件有几个地方我们要注意,首先是result的类型,以前我们定义一个action,result那里我们基本上都不写type属性,因为其默认是请求转发(dispatcher)的方式,除了这个属性一般还有redirect(重定向)等这些值,在这里因为我们用的是文件下载,所以type一定要定义成stream类型,告诉action这是文件下载的result,result元素里面一般还有param子元素,这个是用来设定文件下载时的参数,inputName这个属性就是得到action中的文件输入流,名字一定要和action中的输入流属性名字相同,然后就是contentDisposition属性,这个属性一般用来指定我们希望通过怎么样的方式来处理下载的文件,如果值是attachment,则会d出一个下载框,让用户选择是否下载,如果不设定这个值,那么浏览器会首先查看自己能否打开下载的文件,如果能,就会直接打开所下载的文件,(这当然不是我们所需要的),另外一个值就是filename这个就是文件在下载时所提示的文件下载名字。在配置完这些信息后,我们就能过实现文件的下载功能了。

struts2多文件上传:

其实多文件上传和单文件上传原理一样,单文件上传过去的是单一的File,多文件上传过去的就是一个List<File>集合或者是一个File[]数组,首先我们来看一下前端jsp部分的代码,这里我用到了jquery来实现动态的添加文件下载框以及动态的删除下载框:

<script type="text/javascript" src="script/jquery-181js"></script>

<script type="text/javascript">

$(function()

{

$("#button")click(function()

{

var html = $("<input type='file' name='file'>");

var button = $("<input type='button' name='button' value='删除'><br>");

$("#body div")append(html)append(button);

buttonclick(function()

{

htmlremove();

buttonremove();

})

})

})

</script>

</head>

<body id="body">

<form action="fileUpload2action" method="post" enctype="multipart/form-data">

username: <input type="text" name="username"><br>

file: <input type="file" name="file">

<input type="button" value="添加" id="button"><br>

<div></div>

<input type="submit" value="submit">

</form>

</body>

file的名字必须都命名成file才行,然后处理多文件上传的action代码如下:

public class FileUploadAction2 extends ActionSupport

{

private String username;

//这里用List来存放上传过来的文件,file同样指的是临时文件夹中的临时文件,而不是真正上传过来的文件

private List<File> file;

//这个List存放的是文件的名字,和List<File>中的文件相对应

private List<String> fileFileName;

private List<String> fileContentType;

public String getUsername()

{

return username;

}

public void setUsername(String username)

{

thisusername = username;

}

public List<File> getFile()

{

return file;

}

public void setFile(List<File> file)

{

thisfile = file;

}

public List<String> getFileFileName()

{

return fileFileName;

}

public void setFileFileName(List<String> fileFileName)

{

thisfileFileName = fileFileName;

}

public List<String> getFileContentType()

{

return fileContentType;

}

public void setFileContentType(List<String> fileContentType)

{

thisfileContentType = fileContentType;

}

@Override

public String execute() throws Exception

{

String root = ServletActionContextgetServletContext()getRealPath("/upload");

for(int i = 0; i < filesize(); i++)

{

InputStream is = new FileInputStream(fileget(i));

OutputStream os = new FileOutputStream(new File(root, fileFileNameget(i)));

byte[] buffer = new byte[500];

@SuppressWarnings("unused")

int length = 0;

while(-1 != (length = isread(buffer, 0, bufferlength)))

{

oswrite(buffer);

}

osclose();

isclose();

}

return SUCCESS;

}

}

这样同样将其写到一个输出流里面,这样我们就可以在文件夹里看到上传的多个文件了

用js获得复选框中被选中的选项

function mySubmit(url){

var orderNo = documentgetElementsByName("orderNo");

var param = "";

for(i=0;i<orderNolength;i++){

if(orderNo[i]checked){

param = param+"orderNo="+orderNo[i]value+"&";

}

}

windowlocationhref=url+param;

}

<a href="javascript:void(0);" onclick="mySubmit('<s:url action="orders_updateOrder_disposeOrder"/>')"> 编辑</a>

修改代码如下:

function mysubmit()

{

var shiliname=new Array();

shiliname[0]=documentgetElementById("a")value;

shiliname[1]=documentgetElementById("b")value;//你的这句多了个s

alert("第一个数"+shiliname[0]+"第二个数"+shiliname[1]);//前台显示用alert

//windowreturnValue=shilinamejoin(",");

//windowclose();

}

有几种可能

比如

private date mydata;

mydata 没有设置set get

在网页中要写上<input type="text" name="mydata" >

在网页中输入mydata格式不正确

以上就是关于struts2中的actions接收不到前台form表单的值全部的内容,包括:struts2中的actions接收不到前台form表单的值、得到file的文件名和存储路径后,在Struts2中的action中要怎样获取file的内容并显示到action转到的jsp页面中、struts2不通过form表单提交获得jsp复选框的值 怎么实现谢谢等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/9354455.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-27
下一篇 2023-04-27

发表评论

登录后才能评论

评论列表(0条)

保存