http://nagoya.apache.org/bugzilla/show_bug.cgi?id=2336

*** shadow/2336 Tue Jun 26 13:08:47 2001
--- shadow/2336.tmp.10408       Tue Jun 26 13:29:47 2001
***************
*** 89,91 ****
--- 89,114 ----
       * provides useful information.</p>
  Spliting characters() is not a bug. It is up to an application to combine it 
  into a single chunk.
+ 
+ ------- Additional Comments From [EMAIL PROTECTED]  2001-06-26 13:29 -------
+ 
+ Thank you, Elena.  I'm an idiot (RTFM).
+ 
+ I did some more checking around and also found this "bug" reported
+ on the Sun bug tracker.
+ 
+ See below:
+ 
+ http://developer.java.sun.com/developer/bugParade/bugs/4404579.html
+ 
+ However, in my defense, I'll say that it is certainly a "gotcha".  
+ For instance, every example program I've ever seen just does 
+ something like the following, which is what got me into trouble:
+ 
+    public void characters(char character_array[], int offset, int length) 
+       throws SAXException
+    {
+       String element_value = new String(character_array, offset, length);
+ 
+        ...
+ 

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to