Java ByteBuffer to String getStringFromBuffer(ByteBuffer buffer, int length)

Here you can find the source of getStringFromBuffer(ByteBuffer buffer, int length)

Description

get String From Buffer

License

Apache License

Declaration

public static String getStringFromBuffer(ByteBuffer buffer, int length) 

Method Source Code


//package com.java2s;
/*/* ww  w .  jav a 2  s  .c om*/
 * Copyright Terracotta, Inc.
 *
 * 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 String getStringFromBuffer(ByteBuffer buffer, int length) {
        char[] arr = new char[length];
        for (int i = 0; i < length; i++) {
            arr[i] = buffer.getChar();
        }
        return new String(arr);
    }
}

Related

  1. getString(final ByteBuffer buffer, final int offset, final int length, final Charset encoding)
  2. getString(java.nio.ByteBuffer buffer, int offset, int len)
  3. getStringA(ByteBuffer byteBuffer, int length)
  4. getStringDTrimmed(ByteBuffer byteBuffer, int length)
  5. getStringFromBuffer(ByteBuffer buf, int len)
  6. getStringFromByteBuffer(ByteBuffer bb)
  7. getStringFromByteBuffer(ByteBuffer data)
  8. getStringRepresentation(ByteBuffer key)
  9. getStringTrimmed(ByteBuffer buffer, int size)