-
Bug
-
Resolution: Duplicate
-
P3
-
None
-
1.3.0
-
x86
-
windows_95
Name: skT88420 Date: 09/24/99
1. Read in a file, put it in char[]
2. Then set it in a TextArea
If the file is large(such as len= 185191 ) then you see the TextArea is empty. This is happening in win95. small file is all right. For winnt it is OK no matter the file is big or small.
Following is the partial code.
=====================================================
File f = new File(file_name);
BufferedReader br =
new BufferedReader(new FileReader(f));
long size = f.length();
System.out.println( " f.length=" + size );
int sz = (int) size;
char[] cbuf = new char[sz];
int n = br.read( cbuf, 0, sz );
TextArea ta= new TextArea( new String(cbuf), 24, 20);
====================================================
(Review ID: 95675)
======================================================================
- duplicates
-
JDK-4080391 TextArea.setText() doesn't work for large Strings.
-
- Closed
-