OnJava8-Examples/newio/UsingBuffers.java

34 lines
923 B
Java
Raw Normal View History

2015-11-03 12:00:44 -08:00
// newio/UsingBuffers.java
2015-12-15 11:47:04 -08:00
// (c)2016 MindView LLC: see Copyright.txt
2015-11-15 15:51:35 -08:00
// We make no guarantees that this code is fit for any purpose.
// Visit http://mindviewinc.com/Books/OnJava/ for more book information.
2015-06-15 17:47:35 -07:00
import java.nio.*;
public class UsingBuffers {
private static void symmetricScramble(CharBuffer buffer){
while(buffer.hasRemaining()) {
buffer.mark();
char c1 = buffer.get();
char c2 = buffer.get();
buffer.reset();
buffer.put(c2).put(c1);
}
}
public static void main(String[] args) {
char[] data = "UsingBuffers".toCharArray();
ByteBuffer bb = ByteBuffer.allocate(data.length * 2);
CharBuffer cb = bb.asCharBuffer();
cb.put(data);
2015-11-03 12:00:44 -08:00
System.out.println(cb.rewind());
2015-06-15 17:47:35 -07:00
symmetricScramble(cb);
2015-11-03 12:00:44 -08:00
System.out.println(cb.rewind());
2015-06-15 17:47:35 -07:00
symmetricScramble(cb);
2015-11-03 12:00:44 -08:00
System.out.println(cb.rewind());
2015-06-15 17:47:35 -07:00
}
2015-09-07 11:44:36 -06:00
}
/* Output:
2015-06-15 17:47:35 -07:00
UsingBuffers
sUniBgfuefsr
UsingBuffers
2015-09-07 11:44:36 -06:00
*/