- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to print result of a java expression in JSP?
The <c:out> tag displays the result of an expression. This is almost similar to the way <%= %> works. The difference here is that <c:out> tag lets you use the simpler "." notation to access properties. For example, to access customer.address.street, use the tag <c:out value = "customer.address.street"/>.
The <c:out> tag can automatically escape XML tags so they aren't evaluated as actual tags.
Attribute
The <c:out> tag has the following attributes −
Attribute | Description | Required | Default |
---|---|---|---|
Value | Information to output | Yes | None |
default | Fallback information to output | No | body |
escapeXml | True if the tag should escape special XML characters | No | true |
Example
<%@ taglib uri = "http://java.sun.com/jsp/jstl/core" prefix = "c" %> <html> <head> <title> <c:out> Tag Example</title> </head> <body> <c:out value = "${'<tag> , &'}"/> </body> </html>
The above code will generate the following result −
<tag> , &
- Related Articles
- How to print XPath Expression result in JSP?
- How to set result of a java expression in a property in JSP?
- How to print a date using JSP Expression?
- How to use a value of XPath expression result in JSP in a variable?
- How to write a JSP Expression?
- How to print all the characters of a string using regular expression in Java?
- How to print current date and time in a JSP page?
- How to print date and time in specific format using JSP?
- How to write a conditional expression in lambda expression in Java?
- How to avoid Java code in jsp page?
- Can we test XPath expression in JSP?
- How to remove a java variable from current scope in JSP?
- How to print a byte array in Java?
- Can we have a switch statement in JSP for XPath expression?
- How to print the elements of a HashMap in Java?\n

Advertisements