In the JSP of your choice, do the following below
<%!
public String getSpaces(int numSpaces)
{
StringBuffer buffer = new StringBuffer(numSpaces);
for(int i = 0; i < numSpaces; i++)
buffer.append(" ");
return buffer.toString();
}
%>
Then where you want the space
This will have lot of spaces <%= getSpaces(10)%> here
source
share