开发者

java. context.getFormattedValue() and context.webRoot() methods: what they do?

开发者 https://www.devze.com 2023-02-09 19:47 出处:网络
check the code of one of the applications, and found this line: out.print(con开发者_运维技巧text.getFormattedValue(context.webRoot(),null));

check the code of one of the applications, and found this line:

out.print(con开发者_运维技巧text.getFormattedValue(context.webRoot(),null)); 

I tried to find a description of methods with Google:

context.webRoot()
context.getFormattedValue()

but I could not find the official description of these methods. Why?

This is what that very specific methods? This outdated methods?


"context" in your code is an object; you need to figure out the class of that object. For example, HttpServlet has a "ServletContext" object which maintains the context for the servlet. Your code probably has something that declares "context" as a specific Java type--once you know that, then you can do your web search on "ObjectClassname.webRoot()" and have some hope of figuring out what's going on.

0

精彩评论

暂无评论...
验证码 换一张
取 消