-
Bug
-
Resolution: Duplicate
-
P4
-
None
-
1.1.4
-
None
-
x86
-
windows_95
Name: paC48320 Date: 09/29/97
Text stops printing around line 250.
//Begin Code - TextAreaTest.java
import java.awt.*;
class TextAreaTest{
public static void main(String argv[]){
Frame fr = new Frame();
TextArea ta = new TextArea();
fr.add(ta);
fr.show();
fr.setSize(350, 350);
ta.setEditable(false);
for(int i = 0; i < 650 ; i++)
ta.append("Line "+i+". This a long line test of the TextArea Component. Making the line as long as possible.....................\r\n");
ta.append("Finished");
}
}
//End Code
======================================================================
Text stops printing around line 250.
//Begin Code - TextAreaTest.java
import java.awt.*;
class TextAreaTest{
public static void main(String argv[]){
Frame fr = new Frame();
TextArea ta = new TextArea();
fr.add(ta);
fr.show();
fr.setSize(350, 350);
ta.setEditable(false);
for(int i = 0; i < 650 ; i++)
ta.append("Line "+i+". This a long line test of the TextArea Component. Making the line as long as possible.....................\r\n");
ta.append("Finished");
}
}
//End Code
======================================================================
- duplicates
-
JDK-4080391 TextArea.setText() doesn't work for large Strings.
-
- Closed
-