StringTokenizer limitation?
... in 404; backtracking, i get... http://ostermiller.org/utils/StringHelper.html http://ostermiller.org/utils ... your help. Peter Kronenberg Get the version of StringTokenizer at http://ostermiller.org/utils/ . It does exactly what you want, plus more. I've been using it for
http://www.javakb.com/Uwe/Forum.aspx/java-misc/121
StringTokenizer Question?
... that has the ability to return empty tokens: http://ostermiller.org/utils/StringTokenizer.html 2) A StringHelper class with a split method that ... parsing class that you could use to parse a string: http://ostermiller.org/utils ...
http://www.javakb.com/Uwe/Forum.aspx/java-programmer/1356
Servlet Redirect problem
... client doesn't follow it, I would suggest debugging the client. Stephen http://ostermiller.org/utils/ deadsea I would first try a url with a fully qualified ... client doesn't follow it, I would suggest debugging the client. Stephen http://ostermiller.org/utils
http://www.javakb.com/Uwe/Forum.aspx/java-setup/6741
Base Encoding and decoding Java
... &x); keyLength += x; //getting 12 } Java Code used the Base64 code from http://ostermiller.org/utils/Base64.html i also tried the B64 class from http://sourceforge.net/snippet ... type=snippet&id=100549 - both the results are the same. java com.Ostermiller ...
http://www.javakb.com/Uwe/Forum.aspx/java-security/369
StringTokenizer to return empty tokens
... if (tmpstr == null) tmpstr = ""; System.out.println(tmpstr); } Much better String[] array = line.split("|"); Stephen Ostermiller Use the com.Ostermiller.util.StringTokenizer which has a method that you can set to have ...
http://www.javakb.com/Uwe/Forum.aspx/java-setup/154
Optimising the downloading of a large csv file into a string
... marginally faster than the Line by line reading method!!! Thanks again! Pike. Stephen Ostermiller Try using this CSV Parser: http://ostermiller.org/utils/ExcelCSV.html String[][] values = com.Ostermiller.util.ExcelCSVParser.parse( new InputStreamReader( javacodingURL.openConnection().getInputStream() ) ); It should deal with your problems for ...
http://www.javakb.com/Uwe/Forum.aspx/java-programmer/4429
http Authorization
... Roedy Green see http://mindprod.com/jgloss/authentication.html for sample code. Stephen Ostermiller See the example of Base64 encoding for basic authentication ...
http://www.javakb.com/Uwe/Forum.aspx/java-programmer/10439
request for CSV converter program
... want out.print(columns[0]+","+columns[1]+"," ..... out.println(); Robert Check out the Ostermiller java utilities. He has a CSV parser or printer or something and ...
http://www.javakb.com/Uwe/Forum.aspx/java-programmer/17400
Parse a text file with quoted delimiters?
... wheel by trying to implement your own version. - Oliver Jubz Yes, indeed. Try Ostermiller's utilities. I've used their CSV library, and it works great. http ...
http://www.javakb.com/Uwe/Forum.aspx/java-programmer/26115
Parsing a CSV File
... are many CSV parsers available on the Net. Here one (not tested) : http://ostermiller.org/utils/CSV.html Bye. Shane Mingins Thanks for the references. I also found ...
http://www.javakb.com/Uwe/Forum.aspx/java-setup/2186