Java ByteBuffer Put putStringToByteBuffer(final ByteBuffer bb, String value, String charset)

Here you can find the source of putStringToByteBuffer(final ByteBuffer bb, String value, String charset)

Description

put String To Byte Buffer

License

Apache License

Declaration

private static void putStringToByteBuffer(final ByteBuffer bb,
            String value, String charset) 

Method Source Code

//package com.java2s;
/*   Copyright (C) 2013-2014 Computer Sciences Corporation
 *
 * 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.io.*;
import java.nio.ByteBuffer;

public class Main {
    private static void putStringToByteBuffer(final ByteBuffer bb,
            String value, String charset) {
        if (value != null) {
            try {
                bb.put(value.getBytes(charset));
            } catch (UnsupportedEncodingException e) {
                bb.put(value.getBytes());
            }/*ww  w.j a va  2s . c  om*/
        }
    }
}

Related

  1. putString(ByteBuffer buffer, String s)
  2. putString(final ByteBuffer buffer, final String string)
  3. putString(String name, ByteBuffer buffer)
  4. putString(String str, ByteBuffer bb)
  5. putStringAsCharArray(ByteBuffer byteBuffer, String s)
  6. putTriByte(ByteBuffer buf, int value)
  7. putTruncatedInt(ByteBuffer bytes, int value, int numBytes)
  8. putUInt16(ByteBuffer buffer, long value)
  9. putUInt32(ByteBuffer buffer, long value)