Re: JSP GIS

2002-11-07 Thread Marc te Vruchte
Not exactly sure how far you got already =) but there is some basic info available at: http://wwws.sun.com/software/xml/developers/svg/jsp/ And a rather nice taglib at: http://www.printx.org/svgembed/index.php Good luck, Marc... | -Original Message- | From: A mailing list about Java Se

Re: Speeding up Resultsets

2002-11-07 Thread Marc te Vruchte
Are you displaying the result in a Table? Browsers won't render the table untill it's full loaded, meaning until it reads . You could decide to render the results in smaller tables, 25 rows of data per table or something, or just drop the tables completely. | -Original Message- | From: A m

Re: convert \n to in jsp print statement

2002-10-28 Thread Marc te Vruchte
A more elegant way, that requires JDK1.4, would be this: import java.util.regex.Pattern; import java.util.regex.Matcher; public class removeIt { public static void main(String argv[]) { String strHtml = "this is\nsome\nstring with\nchr's";