Skip to content

Instantly share code, notes, and snippets.

@ezhov-da
Last active March 10, 2019 12:21
Show Gist options
  • Save ezhov-da/b4985275da64532ef41f850bf1a13f85 to your computer and use it in GitHub Desktop.
Save ezhov-da/b4985275da64532ef41f850bf1a13f85 to your computer and use it in GitHub Desktop.
java запись в файл
[code:]java[:code]static final int BUFFER = 2048;
byte data[] = new byte[BUFFER];
int count;
while ((count = origin.read(data, 0, BUFFER)) != -1)
{
zipOutputStream.write(data, 0, count);
}
[/code]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment