Sakura
Thú CƯng :
Số bài viết : 1124 Điểm : 1688 Được cảm ơn : 35 Ngày sinh : 03/11/1990 Tham gia ngày : 16/03/2010 Tuổi : 34 Đến từ : Bình Dương Ngề nghiệp : IT Student
| Tiêu đề: Convert String to byte array 29/6/2011, 16:40 | |
| Đơn giản nhưng không phải ai cũng bik. Để nguyên gốc cho nó máu:D
This little code example shows a String to byte array conversion. The String class has a method called getBytes which returns an array of bytes. In the example the length of the array is printed out to illustrate that the length of the array is the same as the number of characters in the String. - Code:
-
/** * * @author [You must be registered and logged in to see this link.] */ public class Main { /* * This method converts a String to an array of bytes */ public void convertStringToByteArray() { String stringToConvert = "This String is 76 characters long and will be converted to an array of bytes"; byte[] theByteArray = stringToConvert.getBytes(); System.out.println(theByteArray.length); } /** * @param args the command line arguments */ public static void main(String[] args) { new Main().convertStringToByteArray(); } } |
|