位元組流轉換字元流簡單工具類
阿新 • • 發佈:2019-01-30
這裡寫的比較簡單 只寫了位元組流轉換字元流
可以直接拿去使用
public class Tools { //位元組流轉成字元流 public static String getTextFromStream(InputStream inputStream) { byte[] b = new byte[1024]; int len; ByteArrayOutputStream bos = new ByteArrayOutputStream(); try { while ((len = inputStream.read(b))!= -1){ bos.write(b,0,len); } //把流中的資料轉成位元組陣列的形式,然後用位元組陣列構造一個字串 byte[] bytes = bos.toByteArray(); bos.close(); return new String(bytes); } catch (Exception e) { e.printStackTrace(); } return null; } }