Java UTF8 Encode toUTF8Bytes(String src)

Here you can find the source of toUTF8Bytes(String src)

Description

to UTF Bytes

License

Apache License

Declaration

public static byte[] toUTF8Bytes(String src) 

Method Source Code


//package com.java2s;
/*//from  ww w .  j a va  2 s .c  o m
 * Copyright (c) 2014 The APN-PROXY Project
 *
 * The APN-PROXY Project 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.io.UnsupportedEncodingException;

public class Main {
    public static byte[] toUTF8Bytes(String src) {
        if (src == null) {
            return null;
        }

        byte[] bytes = null;

        try {
            bytes = src.getBytes("UTF-8");
        } catch (UnsupportedEncodingException e) {
        }

        return bytes;
    }
}

Related

  1. toUTF8(String str)
  2. toUTF8(String string)
  3. toUTF8(String value)
  4. toUTF8ByteArray(char[] string)
  5. toUTF8Bytes(final String s)
  6. toUTF8Bytes(String string)
  7. toUTF8InputStream(String str)
  8. toUTF8String(byte[] b, int offset, int length)
  9. utf8Code(String str)