Java tutorial
//package com.java2s; import java.io.OutputStream; public class Main { public static void writeSCSocketBytes(OutputStream os, byte[] buffer, int len) throws Exception { os.write(buffer, 0, len); os.flush(); } }