1. 程式人生 > >java獲取一個字串位元組長度

java獲取一個字串位元組長度

String a = "ddddddd";

Byte[] buf = a.getBytes();

 System.out.println(buf.length+"Byte="+buf.length/1024+"KB" );