Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to insert a space between two variables in JSP? [duplicate]

Tags:

html

forms

jsp

el

I have one line of html in a form on a JSP page like this:

<c:forEach var="entry" items="${set}">
    <input type="checkbox" name="thing" value="${entry.key} ${entry.value}">
</c:forEach>

However, the space between the key and the value ${entry.key} ${entry.value} is lost when the form is submitted. I've tried using a \ before the , in that case both the \ and the are still there when submitting.

It seems that Java EL does not preserve isolated spaces, is that right? If so, is there a valid workaround?

EDIT: This is so silly of me, many thanks to Cthulhu. But I still don't understand the behavior after adding a \. Why would that cause the space to show?

like image 393
zw324 Avatar asked Dec 08 '22 19:12

zw324


1 Answers

You can insert white-spaces using: &nbsp;

Character Entity References

Edit: Seems to be a bug in the way spaces are handled by the EL parser, so you should use either html entities like &nbsp; or the other ways outlined here.

like image 82
Anirudh Ramanathan Avatar answered Dec 11 '22 12:12

Anirudh Ramanathan