Java Byte Array from getBytes(String content)

Here you can find the source of getBytes(String content)

Description

Gets byte[] according to string.

License

Apache License

Declaration

public static byte[] getBytes(String content) 

Method Source Code


//package com.java2s;
/*/*ww  w . j  ava  2  s .c  o m*/
 * Copyright 2016 liufanping@iveely.com.
 *
 * 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 {
    /**
     * Gets byte[] according to string.
     */
    public static byte[] getBytes(String content) {
        byte[] bytes = null;
        try {
            bytes = content.getBytes("UTF-8");
        } catch (UnsupportedEncodingException ex) {
            bytes = content.getBytes();
        }
        return bytes;
    }
}

Related

  1. getBytes(final String data, String charset)
  2. getBytes(final String data, String charset)
  3. getBytes(final String value, final String characterEncoding)
  4. getBytes(int length, InputStream inStream)
  5. getBytes(int value)
  6. getBytes(String data, String encoding)
  7. getBytes(String defaultPlain)
  8. getBytes(String fileName)
  9. getBytes(String fileName)