Java Byte Array from getByteString(RandomAccessFile inputStream, int numBytesToRead)

Here you can find the source of getByteString(RandomAccessFile inputStream, int numBytesToRead)

Description

get Byte String

License

Open Source License

Declaration

public static String getByteString(RandomAccessFile inputStream, int numBytesToRead) 

Method Source Code


//package com.java2s;
/*//from  w  w  w .  j  av a 2 s.  co  m
 * Copyright (C) 2015 - 2016 Mitch Talmadge (https://mitchtalmadge.com/)
 * Emoji Tools helps users and developers of Android, iOS, and OS X extract, modify, and repackage Emoji fonts.
 *
 * This program 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.
 *
 * This program 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 this program.  If not, see <http://www.gnu.org/licenses/>.
 */

import java.io.IOException;
import java.io.RandomAccessFile;

public class Main {
    public static String getByteString(RandomAccessFile inputStream, int numBytesToRead) {
        byte[] bytes = new byte[numBytesToRead];
        try {
            inputStream.readFully(bytes);
        } catch (IOException e) {
            e.printStackTrace();
        }
        return new String(bytes);
    }
}

Related

  1. getBytesFromText(String text, String charset)
  2. getBytesInCodePage(final String string, final int codepage)
  3. getBytesInUsAscii(String s)
  4. getBytesISO88591(String s)
  5. getBytesLengthOfEncoding(String encoding, String str)