Java ByteBuffer Read read(ByteBuffer b)

Here you can find the source of read(ByteBuffer b)

Description

read

License

Open Source License

Declaration

public static int read(ByteBuffer b) 

Method Source Code

//package com.java2s;
/*//from   ww  w.j a  va 2 s.  c  om
 * Entagged Audio Tag library
 * Copyright (c) 2003-2005 Rapha?l Slinckx <raphael@slinckx.net>
 * 
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *  
 * This library 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
 * Lesser General Public License for more details.
 * 
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 */

import java.nio.ByteBuffer;

public class Main {
    public static int read(ByteBuffer b) {
        int result = (b.get() & 0xFF);
        return result;
    }
}

Related

  1. checkNotReadOnly(ByteBuffer buffer)
  2. contentOfUnreadBuffer(final ByteBuffer buffer)
  3. enlargeThreadLocalByteBuffer()
  4. parseEsInfo(ByteBuffer read)
  5. read(@Nonnull final FileChannel src, @Nonnull final ByteBuffer dst, @Nonnegative final long position)
  6. read(ByteBuffer bb, FileChannel ch)
  7. read(ByteBuffer bb, int elementWidth)
  8. read(ByteBuffer buffer)
  9. read(ByteBuffer dest, ByteBuffer src)