-
Bug
-
Resolution: Fixed
-
P3
-
1.2.0
-
swing1.1
-
sparc
-
solaris_2.5
-
Verified
Name: akC57697 Date: 03/31/98
The java.awt.swing.text.DefaultEditorKit.write(...) does not
throw BadLocationException but may throws java.lang.ArrayIndexOutOfBoundsException
The doc says:
" .........
exception BadLocationException if pos represents an invalid
location within the document.
.........
"
-----------------------Example--------------------
import java.awt.swing.text.*;
import java.io.*;
public class testDefaultKit {
public static void main(String s[]) {
String string = new String("A string");
java.io.StringReader reader = new java.io.StringReader(string);
DefaultEditorKit editor = new DefaultEditorKit();
Document doc = new PlainDocument();
PrintWriter writer = new PrintWriter(System.out);
try {
editor.read(reader,doc,0); // Insert the string
reader.close();
try {
editor.write(writer,doc,-1,doc.getLength()); // Illegal pos
} catch (BadLocationException ex)
{
System.out.println("OKAY");
return;
}
} catch (Exception e) {
System.out.println("Unexpected : "+e);
return;
}
System.out.println("No exceptions");
}
}
--------------------------------------------------
Output:
Unexpected : java.lang.ArrayIndexOutOfBoundsException
======================================================================