JAVA關於byte數組與String轉換的問題

來源:互聯網
上載者:User

標籤:style   blog   http   color   java   os   ar   2014   


1 public class ToString{ 2 public static void main(String[] args){ 3 String aa = "hellow"; 4 byte[] bb = aa.getBytes(); 5 byte[] cc = aa.getBytes(); 6 7 System.out.println(aa); 8 System.out.println(bb.toString()); 9 System.out.println(cc.toString());10 String dd = new String(bb);11 System.out.println(dd);12 } 13 }

運行結果如下:

這裡有兩點值得說明:

  • 直接列印實際上調用的是toString()方法,而toString()的預設實現是列印物件類型+hashCode()

[B表示byte數組
@表示之後跟著的是hashCode,其實就是其虛擬機器地址

String.getBytes()裡面每次都是調用了new byte[]重新構造了一個新的數組,所以,即使是對 aa 調用兩次getBytes()方法,返回的數組並賦予兩個byte陣列變數,不同的兩個對象,地址不同,當然數組的內容是相同的。

  • 如果想將byte數組內的內容轉變為String類型,需要通過建立字串類型變數,並將byte數組作為參數傳入,方式上述代碼中的 dd。
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.