Java UTF8 fromUTF8(byte[] ba)

Here you can find the source of fromUTF8(byte[] ba)

Description

from UTF

License

Open Source License

Declaration

public static String fromUTF8(byte[] ba) 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

import java.nio.charset.StandardCharsets;

public class Main {
    public static String fromUTF8(byte[] ba) {
        return new String(ba, StandardCharsets.UTF_8);
    }/*w w  w.  ja v  a2 s .  c  o  m*/
}

Related

  1. decodeUTF8(byte[] bytes)
  2. decodeUtf8(String url)
  3. decUTF8(String s)
  4. dumpStringArray(Path outputFilePath, String[] stringArray)
  5. dumpUtf8ToFile(List records, String delimiter, File file)
  6. fromUTF8(byte[] bytes)
  7. fromUTF8(byte[] bytes)
  8. generateRawUTF8Bytes(final String string)
  9. getBytesUtf8(final String string)