Java UTF8 File Read readRawUTF8Bytes(final byte[] bytes)

Here you can find the source of readRawUTF8Bytes(final byte[] bytes)

Description

Generates a String that is populated with the UTF-8 decoding of the provided byte array.

License

Open Source License

Parameter

Parameter Description
bytes A byte array containing the UTF-8 encoding of a String.

Return

A String decoded from the byte array.

Declaration

public static final String readRawUTF8Bytes(final byte[] bytes) 

Method Source Code

//package com.java2s;
/*/*from   w  w  w  .j  a v  a  2s.c o  m*/
 * The MIT License
 *
 * Copyright 2013 Emily Mabrey <emilymabrey93@gmail.com>.
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */

import java.nio.charset.StandardCharsets;

public class Main {
    /**
     * Generates a String that is populated with the UTF-8 decoding of the
     * provided byte array.
     *
     * @param bytes A byte array containing the UTF-8 encoding of a String.
     * @return A String decoded from the byte array.
     */
    public static final String readRawUTF8Bytes(final byte[] bytes) {
        return new String(bytes, StandardCharsets.UTF_8);
    }
}

Related

  1. newUtf8Reader(final InputStream in)
  2. openFileReaderUTF8(File file)
  3. readAllLines(File inputFile)
  4. readAsUTF8(String text)
  5. readLines(File inputFile)
  6. readResourceUtf8(Class contextClass, String filename)
  7. readStringFromUTF8Stream(InputStream is)
  8. readStringUTF16LE(byte[] var0, int var1, int var2)
  9. readTextFile(File inputFile)