REKLAM ALANI

Dosya bölme işlemi

avatar ^Phoenix^
քɦօɛռɨӼ ɖɨʐǟʏռ
418
#1
Yorumu Paylaş

PHP Kod:
import java.io.*;
import java.util.zip.*;

class 
Main {
public static **** 
main(String args) {
if (
args.length != 2) {
System.err.println("Usage: java Main <input> <output>");
System.exit(-1);
}
try {
FileInputStream in = new FileInputStream(args[0]);

// Create compressed stream that writes to byte array output stream
ByteArrayOutputStream b = new ByteArrayOutputStream();
GZIPOutputStream out = new GZIPOutputStream(b);

byte buf = new byte[512];
int howmany;
while ((
howmany in.read(buf)) > 0) {
out.write(buf0howmany);
}
in.close();
out.flush();
byte compressedBytes b.toByteArray(); // get byte array
b.writeTo(new FileOutputStream(args[1])); // write to file
out.close(); // closes both out and b
System.out.println("compressed size: " compressedBytes.length);
// ... do something with byte array

} catch (IOException e) {
System.out.println(e);
}
}

deneme
քɦօɛռɨӼ ɖɨʐǟʏռ

Konuda Ara

0 Yorum


Konuyu Okuyanlar: