private void sopher(InputStream ips, OutputStream ops) throws Exception{
int b = 0;
while((b=ips.read()) != -1){
ops.write(b ^ 0xff);
}
}
private void sopher(InputStream ips, OutputStream ops) throws Exception{
int b = 0;
while((b=ips.read()) != -1){
ops.write(b ^ 0xff);
}
}