Java UTF8 Encode getUTF8Bytes(String string)

Here you can find the source of getUTF8Bytes(String string)

Description

Convert string to UTF-8 bytes

License

Apache License

Parameter

Parameter Description
string the to convert to bytes

Return

the UTF-8 encoded string

Declaration

public static byte[] getUTF8Bytes(String string) 

Method Source Code

//package com.java2s;
/*/*from   ww  w.j av a 2s.c  om*/
 * Copyright 2000-2010 JetBrains s.r.o.
 *
 * 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;

public class Main {
    /**
     * Convert string to UTF-8 bytes
     *
     * @param string the to convert to bytes
     * @return the UTF-8 encoded string
     */
    public static byte[] getUTF8Bytes(String string) {
        try {
            return string.getBytes("UTF-8");
        } catch (UnsupportedEncodingException e) {
            throw new IllegalStateException("UTF-8 encoding is not available", e);
        }
    }
}

Related

  1. encodeUTF8(String text)
  2. encodeUTF8(String text)
  3. encodeUtf8(String url)
  4. getBufferedWriter(final File outFile, final String outEncoding)
  5. getUTF8Bytes(String string)
  6. getUTF8Decoder(boolean ignoreEncodingErrors)
  7. getUTF8StringLength(String string)
  8. isUTF8(String encoding)
  9. toUTF8(byte[] bytes)