您好,我的grails gsp中有以下代码
<form action="upload-script-url" method="post" enctype="multipart/form-data">
<table class="table"style="width: 75%">
<tr>
<td>
<span style="font-weight: bold; ">Select the Source File:</span>
<input size="75" type="file" id="payload" name="payload"/>
</td>
</tr>
<tr>
<td>
<input type="submit" class="red" id="Run">Run</button>
</td>
</tr>
</table>
</form>
我从以下网址阅读了表单参数:here
这些是html表格中的正确参数吗?
现在我该如何继续读取所选文件中的数据?我是否必须使用apache commons fileupload api?
感谢
答案 0 :(得分:2)
request.getFile("payload")
答案 1 :(得分:0)
如果您花些时间(再次)实际look at the documentation,您会看到如何做到这一点......