限制 PHP 的文件访问 -> Java小程序
我正在用 PHP 编写一个门户,允许用户上传 DICOM 图像,并允许同一组的用户通过 Java Applet 查看这些 DICOM 图像。通过查看器显示图像的 html 代码如下所示:
<APPLET archive=radscaper.jar codebase=./ code=com.divinev.radscaper.Main.class width=100% height=100%>
<PARAM NAME=Config VALUE=config.xml>
<PARAM NAME=DicomImg1 VALUE="relative_path1/image1.dcm">
</APPLET>
因此生成的 html 将文件 url 传递给 java applet。我面临的问题是 - 文件将存储在公共目录中,任何知道文件 url 的人都可以轻松访问。有没有办法限制特定用户组的文件访问?
I'm writing a portal in PHP that allows users to upload DICOM images, and allow users of the same group to view those DICOM images through a Java Applet. The html code to display images through the viewer looks like this:
<APPLET archive=radscaper.jar codebase=./ code=com.divinev.radscaper.Main.class width=100% height=100%>
<PARAM NAME=Config VALUE=config.xml>
<PARAM NAME=DicomImg1 VALUE="relative_path1/image1.dcm">
</APPLET>
So the generated html passes in a file url to the java applet. The problem I'm facing is - files would be stored in a public directory and easily accessed by anyone knowing the file url. Is there a way I can restrict file access to a certain user group?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 php 脚本作为 DicomImg1 值,例如:
php 脚本可以检查客户端是否被允许并采取相应的操作。
这是一种方法。
Use a php script for the DicomImg1 value, example:
The php script can check if the client is allowed and acts accordingly.
Thats one way.