从服务器根目录中的磁盘访问文件
我需要从我的jsp页面访问一些文件。所以我将它们保存在我的服务器根目录中。但是文件的数量可能会增加。那么有没有一种方法可以让我从Web服务器根目录访问这些文件并将它们存储在磁盘中的任何位置?
I need to access some files from my jsp pages.So I kept them inside my server Root.But the no of files are likely to increase.So is there a way by which I can access those files from web server root and store them in anywhere in disk ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以创建一个符号链接....在您的网络根目录中创建一个目录并
you can create a symbolic link.... create a directory in your web root and
您需要获取文件的绝对路径。使用
FileInputStream
读取它,写入JSP上的输出流。参考Java2s读取二进制数据
You need to get the absolute path of the file. Read it using
FileInputStream
, write to output stream on JSP.refer Java2s Reading Binary Data