view src/myVncProxy/SendThread.java @ 145:8bdbed4c4505

add template.txt
author e085711
date Mon, 05 Sep 2011 06:03:14 +0900
parents 37e287cfe7e0
children
line wrap: on
line source

package myVncProxy;
import java.net.Socket;
import java.io.IOException;
import java.io.OutputStream;


public class SendThread implements Runnable {

	Socket sock;
	OutputStream out;
	byte b[];

	SendThread(Socket _sock, byte _b[]){
		sock = _sock;
		b = _b;
	}
	SendThread(OutputStream _out, byte _b[]){
		out = _out;
		b = _b;
	}
	
	public void run() {
		try{
			out.write(b, 0, b.length);	
//			sock.getOutputStream().write(b, 0, b.length);
		}catch(IOException e){
			
		}
	}
}