Java UTF8 getUTF8(byte[] data, int offset, int length)

Here you can find the source of getUTF8(byte[] data, int offset, int length)

Description

get UTF

License

Apache License

Parameter

Parameter Description
length The length in BYTES

Declaration

public static String getUTF8(byte[] data, int offset, int length) 

Method Source Code

//package com.java2s;
/*//from   ww  w.  j  a  va  2  s.c o m
 * 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.nio.charset.Charset;

public class Main {
    protected static final Charset UTF8 = Charset.forName("UTF-8");

    /**
     * @param length The length in BYTES
     */
    public static String getUTF8(byte[] data, int offset, int length) {
        return new String(data, offset, length, UTF8);
    }
}

Related

  1. getOutputFromCommand(boolean print, List command)
  2. getStringFromUTF8Bytes(byte[] utf8Bytes)
  3. getUtf8()
  4. getUTF8()
  5. getUtf8()
  6. getUTF8Bytes(String s)
  7. getUtf8Bytes(String s)
  8. GetUtf8Bytes(String str, boolean replace)
  9. getUTF8Bytes(String string)