编辑:
我需要从“资源”包中获取图像,该图像位于文件夹“ C:/ folder”中,此代码在资源管理器浏览器中有效,但在Google chrome浏览器中无效。
希望我的项目可以在我们俩身上工作。
<p:row>
<p:column>
<h:graphicImage
url="file:///C:/test/2018/03/13/test.jpg"
style="width: 100%;margin-top: 10%;" />
</p:column>
</p:row>
我正在尝试使用上面的代码,但是没有用。
编辑2:
我尝试过:
执行chrome,并具有使用
访问文件和文件夹的权限-允许从文件访问文件
答案 0 :(得分:0)
您需要使用file:
网址来引用本地计算机上的引用文件,如下所示:
<p:row>
<p:column>
<h:graphicImage
url="file:///C:/test/2018/03/13/test.jpg"
style="width: 100%;margin-top: 10%;" />
</p:column>
</p:row>