保存在Web内容中的文件的URL路径

时间:2014-07-03 06:19:39

标签: java servlets

我已在Web Content下的服务器中保存了某些文件。现在我想获取iots url路径,我的意思是它的路径以http://开头,而不是它的绝对路径,因为我想将url路径作为json对象传递给我的android客户端。而绝对路径不能在其他系统中访问,但如果它的url路径然后我可以访问它。请帮我解决这个问题。

2 个答案:

答案 0 :(得分:0)

经过长时间的研究后我得到了答案

String fullContextPath = request.getScheme() + "://"
            + InetAddress.getLocalHost().getHostAddress() + ":"
            + request.getServerPort() + request.getContextPath()
            + "/PdfToHtml";

答案 1 :(得分:-1)

试试这个

String path=request.getSession().getServletContext().getRealPath();

这将为您提供项目的路径,并从那里导航到您想要的任何位置。