How to get full path in jsp?

java, jsp

Solution

<html>
<head><title>Absolute Path</title></head>
Absolute Path is:<%= getServletContext().getRealPath("/") %> 
</html>

Hope this help you

Problem

Can anyone please suggest how to get full path in jsp? Iam creating an image in some location in java class, and when im trying to access this location path in jsp, it is not showing the full path.

Original source