Here's an issue I've been working with lately. I have a bunch of text in a database, and when I display it with JSP, I want to interpret the hidden line break characters (\n, etc), as <br> tags. I have a handle on how to do it (StringTokenizer, String.indexOf()), etc., but I can't seem to search for the right sequence of characters. I thought it went like this .. line breaks on Unix were \n, line breaks on mac were \l, PC had \n\l. I guess this isn't working. Can someone help me out? Thanks a lot! Steve
Bhupinder Dhillon
Ranch Hand
Joined: Oct 12, 2000
Posts: 124
posted
0
I always use these methods...
William Brogden
Author and all-around good cowpoke
Rancher
Joined: Mar 22, 2000
Posts: 12269
1
posted
0
Wouldn't it be easier to use one of the input stream methods that have a readLine() method? What form does the database return the text in? Bill