-
Bug
-
Resolution: Fixed
-
P3
-
1.4.0
-
beta3
-
sparc
-
solaris_7
-
Verified
String source = "This is a test string used to test wrap()";
int size = source.length();
CharBuffer c = CharBuffer.wrap(source,10,size);
System.out.println("Limit :"+c.limit()+" Expected : "+size);
results in
Limit :31 Expected : 41
because according to Specs
wrap(String str,int start,int end) wraps a string into a Buffer and its limit will be end.
---
The following test case illustrates the problem described across bugs 4413135
(limit), 4413137 (position), and 4413088 (capacity).
import java.io.*;
import java.nio.*;
public class wrap {
public static void main(String [] args) {
String s = "abcdefg";
System.out.println("s: \"" + s + "\"");
System.out.println("s.length: " + s.length());
int start = 2;
int end = 5;
CharBuffer c = CharBuffer.wrap(s, start, end);
System.out.println(" lim: " + c.limit() + " = " + end);
System.out.println(" pos: " + c.position() + " = " + start);
System.out.println(" cap: " + c.capacity() + " = " + s.length());
System.out.println(" mark: " + c.mark());
}
}
OUTPUT:
$ java -version
java version "1.4.0-beta_refresh"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.0-beta_refresh-b74)
Java HotSpot(TM) Client VM (build 1.4.0-beta_refresh-b74, mixed mode)
$ java wrap
s: "abcdefg"
s.length: 7
lim: 3 = 5
pos: 0 = 2
cap: 3 = 7
mark: cde
According to the spec for CharBuffer.wrap(String, int, int), the integers on
either side of the "=" in the output should be the same.
-- iag@eng 2001-08-08
###@###.### 2001-10-04
java version "1.4.0-beta3"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.0-beta3-b82)
Java HotSpot(TM) Client VM (build 1.4.0-beta3-b82, mixed mode)
/net/sqesvr/export/xlt/libs/merlin/dev/testbase/src/libs_api_tests/common/java_nio/Buffer/CharBufferTest/CBWrap passes on b82.
int size = source.length();
CharBuffer c = CharBuffer.wrap(source,10,size);
System.out.println("Limit :"+c.limit()+" Expected : "+size);
results in
Limit :31 Expected : 41
because according to Specs
wrap(String str,int start,int end) wraps a string into a Buffer and its limit will be end.
---
The following test case illustrates the problem described across bugs 4413135
(limit), 4413137 (position), and 4413088 (capacity).
import java.io.*;
import java.nio.*;
public class wrap {
public static void main(String [] args) {
String s = "abcdefg";
System.out.println("s: \"" + s + "\"");
System.out.println("s.length: " + s.length());
int start = 2;
int end = 5;
CharBuffer c = CharBuffer.wrap(s, start, end);
System.out.println(" lim: " + c.limit() + " = " + end);
System.out.println(" pos: " + c.position() + " = " + start);
System.out.println(" cap: " + c.capacity() + " = " + s.length());
System.out.println(" mark: " + c.mark());
}
}
OUTPUT:
$ java -version
java version "1.4.0-beta_refresh"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.0-beta_refresh-b74)
Java HotSpot(TM) Client VM (build 1.4.0-beta_refresh-b74, mixed mode)
$ java wrap
s: "abcdefg"
s.length: 7
lim: 3 = 5
pos: 0 = 2
cap: 3 = 7
mark: cde
According to the spec for CharBuffer.wrap(String, int, int), the integers on
either side of the "=" in the output should be the same.
-- iag@eng 2001-08-08
###@###.### 2001-10-04
java version "1.4.0-beta3"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.0-beta3-b82)
Java HotSpot(TM) Client VM (build 1.4.0-beta3-b82, mixed mode)
/net/sqesvr/export/xlt/libs/merlin/dev/testbase/src/libs_api_tests/common/java_nio/Buffer/CharBufferTest/CBWrap passes on b82.
- duplicates
-
JDK-4413088 (bf) capacity() returns 0 when a value was expected
-
- Closed
-
-
JDK-4413137 (bf) CharBuffer.position() returns unexpected value
-
- Closed
-