Java ByteBuffer to String readString(ByteBuffer b, char s[], int off, int len)

Here you can find the source of readString(ByteBuffer b, char s[], int off, int len)

Description

read String

License

Apache License

Declaration

public static void readString(ByteBuffer b, char s[], int off, int len) 

Method Source Code

//package com.java2s;
/**/*w w w  . j  ava 2  s.  c  om*/
 * Copyright 2004 The Apache Software Foundation
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

import java.nio.ByteBuffer;

public class Main {
    public static void readString(ByteBuffer b, char s[], int off, int len) {
        while (off < len) {
            s[off++] = b.getChar();
        }
    }
}

Related

  1. getStringRepresentation(ByteBuffer key)
  2. getStringTrimmed(ByteBuffer buffer, int size)
  3. getStringWOLength(ByteBuffer bb)
  4. readStr(ByteBuffer bb, int off, int len)
  5. readString(byte[] tmp, ByteBuffer in)
  6. readString(ByteBuffer bb)
  7. readString(ByteBuffer bb)
  8. readString(ByteBuffer bb, int limit)
  9. readString(ByteBuffer buf)