Java Byte Array Create toBytes(String name)

Here you can find the source of toBytes(String name)

Description

to Bytes

License

Apache License

Declaration

public static byte[] toBytes(String name) 

Method Source Code

//package com.java2s;
/*******************************************************************************
 * Copyright 2015 Junichi Tatemura/*from   ww w. j av a  2 s. c om*/
 *
 * 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.
 *******************************************************************************/

public class Main {
    public static byte[] toBytes(String name) {
        return name.getBytes();
    }
}

Related

  1. toBytes(String hex)
  2. toBytes(String hexStr)
  3. toBytes(String hexStr)
  4. toBytes(String hexString)
  5. toBytes(String hexString)
  6. toBytes(String s)
  7. toBytes(String s, int len, byte pad)
  8. toBytes(String str, byte[] bytes, int index)
  9. toBytes4(int n)