Java UTF8 getUtf8Bytes(String s)

Here you can find the source of getUtf8Bytes(String s)

Description

Convinient method to get UTF8 bytes

License

Open Source License

Declaration

public static byte[] getUtf8Bytes(String s) 

Method Source Code

//package com.java2s;
/**//  w w w. ja v  a2s . c  o m
 * Copyright Sangram Jadhav. All rights reserved.
 *
 * 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.io.UnsupportedEncodingException;

import java.nio.charset.Charset;

public class Main {
    /**
     * Convinient method to get UTF8 bytes
     */
    public static byte[] getUtf8Bytes(String s) {
        return s.getBytes(Charset.forName("UTF-8"));
    }

    /**
     * Get bytes of string. This method is NULL safe. It will return null if null argument provided.
     */
    public static byte[] getBytes(String s, String charsetName) {
        if (s == null) {
            return null;
        }
        try {
            return s.getBytes(charsetName);
        } catch (UnsupportedEncodingException e) {
            throw new RuntimeException(e);
        }
    }
}

Related

  1. getUtf8()
  2. getUTF8()
  3. getUtf8()
  4. getUTF8(byte[] data, int offset, int length)
  5. getUTF8Bytes(String s)
  6. GetUtf8Bytes(String str, boolean replace)
  7. getUTF8Bytes(String string)
  8. getUTF8BytesFromString(String str)
  9. getUtf8Decoder()