嘿伙计们,我是 liferay 的新手,并且迫切需要上传文件(如果可能,请使用 Excel)和制作数据库条目。
已收集 jsp 页面应包含的信息
<aui:form action="<%=actionURL%>" enctype="multipart/form-data" method="post" name="<%=Constants.IMPORT_ACTION %>" >
<div class="manage-main" style="padding-top: 20px;">
<table>`
<tr>
<td class="lbl"><liferay-ui:message key="select-file-to-upload" /></td>
<td><input type="file" name="fileupload" id="fileupload" size="40" /></td>
</tr>
</table>
<aui:button type="submit" value="upload" name="upload" cssClass="topSpace"/>
</aui:form>
爪哇代码
// you can directly cast from renderRequest to portletRequest.
UploadPortletRequest upreq = PortalUtil.getUploadPortletRequest(portletRequest);
CsvReader csv =getCSV(upreq);
请提供一些容易理解的步骤,因为我没有时间去探索。