搜尋

首頁  >  問答  >  主體

java讀取本機png圖片到byte數組?

File file = new File(path);
FileInputStream fis = new FileInputStream(file);
byte[] img_content = new byte[(int) file.length()];
fis.read(img_content);
fis.close();

圖片是存在的
讀入的內容全是0 是什麼情況???

黄舟黄舟2818 天前570

全部回覆(1)我來回復

  • 怪我咯

    怪我咯2017-04-18 10:56:37

    檔案損壞 和程式碼沒有關係。 。 。 。

    回覆
    0
  • 取消回覆