0
嘿我不能找出這裏有什麼問題。簡單的寫入和讀取字節
寫入文件:
byte[] dim = new byte[2];
dim[0] = (byte) deImgWidth; // Input 384
dim[1] = (byte) deImgHeight; // Input 216
out.write(dim);
從文件中讀取
byte[] file = new byte[(int) f.length()];
FileInputStream fs = new FileInputStream(f);
fs.read(file);
deImgWidth = ((file[0]) & 0xFF); // output 128
deImgHeight = ((file[1]) & 0xFF); // output 216
爲什麼我能獲得相同的deImgHeight值,但不一樣的deImgWidth價值?
'deImgWidth'出來是什麼? –
@Cthulhu在:384,出:128 – AlexCheuk