Java ByteBuffer Write writeStringToBuffer(ByteBuffer buffer, String message)

Here you can find the source of writeStringToBuffer(ByteBuffer buffer, String message)

Description

write bytes to buffer and flip

License

Open Source License

Parameter

Parameter Description
buffer desired buffer
message message

Declaration

public static void writeStringToBuffer(ByteBuffer buffer, String message) 

Method Source Code

//package com.java2s;
/*/*from  w  ww.j  a va  2  s.c o  m*/
 * Copyright (c) 2014, 2017, Marcus Hirt, Miroslav Wengner
 *
 * Robo4J is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * Robo4J is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with Robo4J. If not, see <http://www.gnu.org/licenses/>.
 */

import java.nio.ByteBuffer;

public class Main {
    /**
     * write bytes to buffer and flip
     * 
     * @param buffer
     *            desired buffer
     * @param message
     *            message
     */
    public static void writeStringToBuffer(ByteBuffer buffer, String message) {
        buffer.clear();
        buffer.put(message.getBytes());
        buffer.flip();
    }
}

Related

  1. writeString(final String text, final ByteBuffer out)
  2. writeString(String s, ByteBuffer buff)
  3. writeString(String string, ByteBuffer bb)
  4. writeStringArray(ByteBuffer buf, String[] array)
  5. writeStringData(ByteBuffer buff, String s, int len)
  6. writeTo(ByteBuffer buffer, File file)
  7. writeToChannel(final WritableByteChannel destChannel, final ByteBuffer buffer)
  8. writeToChannel(WritableByteChannel chan, ByteBuffer buffer)
  9. writeToChannel(WritableByteChannel dst, ByteBuffer src)