Convert String to byte array


Diễn đàn chia sẻ kiến thức, kinh nghiệm về IT và cuộc sống!
 
Trang ChínhGalleryTìm kiếmLatest imagesĐăng kýĐăng Nhập
Top posters
Sakura (1124)
Convert String to byte array Vote_lcapConvert String to byte array Voting_barConvert String to byte array Vote_rcap 
hotboy (705)
Convert String to byte array Vote_lcapConvert String to byte array Voting_barConvert String to byte array Vote_rcap 
Già Làng (373)
Convert String to byte array Vote_lcapConvert String to byte array Voting_barConvert String to byte array Vote_rcap 
con_ca_nho90 (289)
Convert String to byte array Vote_lcapConvert String to byte array Voting_barConvert String to byte array Vote_rcap 
that_true (154)
Convert String to byte array Vote_lcapConvert String to byte array Voting_barConvert String to byte array Vote_rcap 
theanhkkt (143)
Convert String to byte array Vote_lcapConvert String to byte array Voting_barConvert String to byte array Vote_rcap 
phamay (137)
Convert String to byte array Vote_lcapConvert String to byte array Voting_barConvert String to byte array Vote_rcap 
lovelonelyman (134)
Convert String to byte array Vote_lcapConvert String to byte array Voting_barConvert String to byte array Vote_rcap 
o0ovioletstaro0o (128)
Convert String to byte array Vote_lcapConvert String to byte array Voting_barConvert String to byte array Vote_rcap 
stevenhung (122)
Convert String to byte array Vote_lcapConvert String to byte array Voting_barConvert String to byte array Vote_rcap 
Âm - Dương lịch
Clock
Logo
11TH02 Pro!
Liên kết
Tin tức 60s
Tin công nghệ
Thời sự 24h
Game Moblie

Share
 

 Convert String to byte array

Xem chủ đề cũ hơn Xem chủ đề mới hơn Go down 
Tác giảThông điệp
Sakura

Convert String to byte array Stars7
Sakura

Thú CƯng : Convert String to byte array I-hate-Cats-icon
Nam Scorpio

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 : 33
Đến từ : Bình Dương
Ngề nghiệp : IT Student

Convert String to byte array Empty
Bài gửiTiêu đề: Convert String to byte array   Convert String to byte array I_icon_minitime29/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();
    }
}
Về Đầu Trang Go down
 

Convert String to byte array

Xem chủ đề cũ hơn Xem chủ đề mới hơn Về Đầu Trang 
Trang 1 trong tổng số 1 trang

 Similar topics

-
» Convert byte[ ] array to String
» Java - Find and get a substring form a string

Permissions in this forum:Bạn không có quyền trả lời bài viết
IT World! :: HỌC TẬP :: HỌC KỲ V :: Lập Trình Java-