0
A
回答
0
試試這個
public void pump(InputStream in, OutputStream out, int size) {
byte[] buffer = new byte[4096]; // Or whatever constant you feel like using
int done = 0;
while (done < size) {
int read = in.read(buffer);
if (read == -1) {
throw new IOException("Something went horribly wrong");
}
out.write(buffer, 0, read);
done += read;
}
// Maybe put cleanup code in here if you like, e.g. in.close, out.flush, out.close
}
從這個鏈接Reading and writing binary file in Java (seeing half of the file being corrupted)
相關問題
- 1. 在iPhone上執行二進制文件
- 2. 如何在運行二進制文件時加載android庫?
- 3. 在Node.js上上載二進制文件
- 4. 僅將二進制文件加載到iPhone上進行測試
- 5. 在Heroku中執行二進制文件(在Heroku上)
- 6. 無法執行二進制文件
- 7. 用shebang執行二進制文件
- 8. cygwin - 無法執行二進制文件
- 9. CircleCI:執行本地二進制文件
- 10. C++不能執行二進制文件
- 11. bash,無法執行二進制文件
- 12. PhantomJs無法執行二進制文件
- 13. AWS:不能執行二進制文件
- 14. 無法執行二進制文件centos?
- 15. Android下載二進制文件問題
- 16. Erlang函數如何在二進制文件上執行BSL?
- 17. 在網絡主機上執行二進制文件
- 18. 無法在Ubuntu上執行二進制文件./webupdater
- 19. 二進制文件沒有在osx上雙擊執行
- 20. 在越獄iPhone上執行二進制文件
- 21. C#加載二進制文件
- 22. Java加載二進制文件
- 23. GCC編譯的二進制文件給予 「不能執行二進制文件」
- 24. g ++編譯的二進制文件給「不能執行二進制文件」
- 25. 在導軌上加載WebAssembly二進制文件
- 26. AFNetworking和下載二進制文件
- 27. 二進制文件下載
- 28. PhoneGap:爲iPhone和Android下載和保存二進制文件(mp3)
- 29. Android InflateException二進制XML文件行
- 30. Android strace(或任何linux二進制文件)執行
見http://stackoverflow.com/questions/4703131/is-it-possible-to-run-a-native-arm-binary -on-A-無根,Android的手機 – Michael