Java UTF8 getBytesUtf8(final String string)

Here you can find the source of getBytesUtf8(final String string)

Description

Encodes the given string into a sequence of bytes using the UTF-8 charset, storing the result into a new byte array.

License

Apache License

Parameter

Parameter Description
string the String to encode, may be <code>null</code>

Return

encoded bytes, or null if the input string was null

Declaration

public static byte[] getBytesUtf8(final String string) 

Method Source Code

//package com.java2s;
/*//from  w  w w  .  j  ava 2s .  com
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You 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;
import java.nio.charset.StandardCharsets;

public class Main {
    /**
     * Encodes the given string into a sequence of bytes using the UTF-8 charset, storing the result into a new byte
     * array.
     *
     * @param string
     *            the String to encode, may be <code>null</code>
     * @return encoded bytes, or <code>null</code> if the input string was <code>null</code>
     * @see <a href="http://download.oracle.com/javase/6/docs/api/java/nio/charset/Charset.html">Standard charsets</a>
     */
    public static byte[] getBytesUtf8(final String string) {
        return getBytes(string, StandardCharsets.UTF_8);
    }

    /**
     * Calls {@link String#getBytes(Charset)}
     *
     * @param string
     *            The string to encode (if null, return null).
     * @param charset
     *            The {@link Charset} to encode the <code>String</code>
     * @return the encoded bytes
     */
    private static byte[] getBytes(final String string,
            final Charset charset) {
        if (string == null) {
            return null;
        }
        return string.getBytes(charset);
    }
}

Related

  1. dumpUtf8ToFile(List records, String delimiter, File file)
  2. fromUTF8(byte[] ba)
  3. fromUTF8(byte[] bytes)
  4. fromUTF8(byte[] bytes)
  5. generateRawUTF8Bytes(final String string)
  6. getFile(String outputFolder, String fileName)
  7. getFiles(String InputFilePath)
  8. getOutputFromCommand(boolean print, List command)
  9. getStringFromUTF8Bytes(byte[] utf8Bytes)