我正在使用JACOB使用JSF Primefaces将excel文件上传到您的路径目录中。我想要做的是给用户一个指向该文件在其路径中的位置的链接。
路径目录是:C:\ HUT \ result
我目前在我的.xhtml中使用它:
<ui:composition xmlns="http://www.w3.org/1999/xhtml"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:p="http://primefaces.org/ui"
xmlns:c="http://java.sun.com/jsp/jstl/core"
template="/template/ui.xhtml">
<ui:define name="body">
<h:form>
<br>
<h:outputText value="Tier 1 Standard: #{trialWaterfall.value1}" />
</br>
</h:form>
<a href="file:///C:/HUT/result/">Login page</a>
</ui:define>
</ui:composition>