Java tutorial
//package com.java2s; public class Main { public static byte[] string2Bytes(String s) { byte[] r = s.getBytes(); return r; } }