限制 PHP 的文件访问 -> Java小程序

发布于 2024-08-29 11:31:58 字数 463 浏览 1 评论 0原文

我正在用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

护你周全 2024-09-05 11:32:00

使用 php 脚本作为 DicomImg1 值,例如:

<PARAM NAME=DicomImg1 VALUE="serve-dcm.php?id=image1.dcm">

php 脚本可以检查客户端是否被允许并采取相应的操作。

这是一种方法。

Use a php script for the DicomImg1 value, example:

<PARAM NAME=DicomImg1 VALUE="serve-dcm.php?id=image1.dcm">

The php script can check if the client is allowed and acts accordingly.

Thats one way.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文