Compressão de um String
Página 1 de 1
Compressão de um String
Aqui fica um exemplo de como comprimir uma String de forma a passar a ocupar menos espaço. (Claro pouco útil se não tivermos o método permitindo o processo contrário de modo a obtermos a String original - iremos por o método em breve online)
import java.io.ByteArrayOutputStream;
import java.util.zip.Deflater;
...
public static byte[] compress2( String s ) {
Deflater defl = new Deflater( Deflater.BEST_COMPRESSION );
defl.setInput( s.getBytes() );
defl.finish();
boolean done = false;
ByteArrayOutputStream bos = new ByteArrayOutputStream();
while (!done) {
byte[] buf = new byte[256];
int bufnum = defl.deflate( buf );
bos.write( buf, 0, bufnum );
if ( bufnum < buf.length )
done = true;
}
try {
bos.flush();
bos.close();
} catch(IOException ioe) {}
return( bos.toByteArray() );
}
import java.io.ByteArrayOutputStream;
import java.util.zip.Deflater;
...
public static byte[] compress2( String s ) {
Deflater defl = new Deflater( Deflater.BEST_COMPRESSION );
defl.setInput( s.getBytes() );
defl.finish();
boolean done = false;
ByteArrayOutputStream bos = new ByteArrayOutputStream();
while (!done) {
byte[] buf = new byte[256];
int bufnum = defl.deflate( buf );
bos.write( buf, 0, bufnum );
if ( bufnum < buf.length )
done = true;
}
try {
bos.flush();
bos.close();
} catch(IOException ioe) {}
return( bos.toByteArray() );
}
Tópicos semelhantes
» String format
» Decompressão de um String
» RegExp - Add XXX to the end of a String
» Converting String to Number
» Converter ficheiro XML em objecto String
» Decompressão de um String
» RegExp - Add XXX to the end of a String
» Converting String to Number
» Converter ficheiro XML em objecto String
Página 1 de 1
Permissões neste sub-fórum
Não podes responder a tópicos
Ter Set 24, 2019 1:16 pm por jpmartins
» Artigo Bitcoin
Ter Set 24, 2019 1:13 pm por jpmartins
» Novo site para desportistas / New site for athletes
Ter Dez 04, 2018 8:19 am por Admin
» Check used port with the command line
Ter Dez 04, 2018 8:10 am por Admin
» Check the port where mariaDB is running
Seg Dez 03, 2018 4:59 am por Admin
» Check the linux version
Seg Dez 03, 2018 3:12 am por Admin
» Granting rights to a database for a user
Qui Nov 29, 2018 2:04 am por Admin
» Create new user
Qui Nov 29, 2018 2:01 am por Admin
» Change level of password security level
Qui Nov 29, 2018 1:59 am por Admin