Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想用 Ognl 重新实现以下 Java 代码:
while((s=bufferedReader.readLine()) != null) System.out.println(s);
但我不知道,你能给我点吗?
提前致谢!
OGNL 是对象图导航语言,而不是成熟的编程语言。您可以在 JSP 中将 ognl 与其他技术(如 Struts2 标记)一起使用,并实现相应的 while 循环
来自维基百科
它旨在用于将标记库作为表达式语言的 Java EE 应用程序中。