return text.split("(?<=\\G.{160})");
}
private byte[] getEncodedBytes(String text) throws IllegalStateException, UnsupportedEncodingException {
AlphabetEncoding enc = getDataCoding();
byte[] encodedBytes = enc.encodeString(text);
StringBuffer strBytes = new StringBuffer();
for (int i=0; i < encodedBytes.length; i++) {
strBytes.append(" : ").append(encodedBytes[i]);
}