Replace carriage returns and line feeds in out.println?
- by Mike
I am a novice coder and I am using the following code to outprint a set of Image keywords and input a "|" between them.
<% Set allKeywords = new HashSet();
for (AlbumObject ao : currentObjects) {
XmpManager mgr = ao.getXmpManager();
if (mgr != null) {
allKeywords.addAll(mgr.getKeywordSet());
}
}
//get the Iterator
Iterator itr =…