嗨,我的 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>
我从以下位置读取表单参数:这里
是 html 表单中的正确参数吗?
现在我应该如何继续从所选文件中读取数据?我必须使用 apache commons fileupload api 吗?
谢谢