OutputStream stream = s.getOutputStream(); if (stream != null) { DataOutputStream output = new DataOutputStream(stream); if (output != null) { output.writeShort(0); output.writeShort(0); output.writeShort((short) theData.length()); output.writeBytes(theData); output.flush(); res = true; } }