How can I get real path for file in my WebContent folder?

前端 未结 9 1051
既然无缘
既然无缘 2020-12-16 02:33

I need to get real path for file in my WebContent directory, so that framework that I use can access that file. It only takes String file as attribute, so I need to get the

9条回答
  •  不知归路
    2020-12-16 03:12

    try to use this when you want to use arff.txt in your development and production level too

      String path=getServletContext().getRealPath("/WEB-INF/files/arff.txt");
    

提交回复
热议问题