如何从WebSocket端点中获取真实的系统文件路径



当我在Servlet上下文中时,我可以通过请求调用.getServlet上下文().getRealPath(UPLOAD_path)来轻松获取真实的系统文件路径。请朋友们,我如何在Java EE 7中的WebSocket Endpoint中实现等效操作。提前谢谢。

您可以从ServerEndpointConfig#getPath()获取路径信息。该方法的结果与ServletContext#getRealPath()的唯一区别在于,它给出了相关路径;您可以在该方法的结果前面加上根上下文名称。要获得结果,您需要实现onOpen(来自javax.websocket.Endpoint类)

//called when the client first negotiates the opening of the websocket connection
public void onOpen(Session session, ServerEndpointConfig config){
   String path = config.getPath();
}

相关内容

  • 没有找到相关文章

最新更新