conversion d'un script java en actionscript
Bonjour,
Je suis actuellement sur un projet de t�l�maintenance bas� sur l'utilitaire UltraVNC.
J'aimerais beaucoup me servir de l'outils falshlight-vnc ecrit en actionscript, mais ce dernier ne prends pas en compte la fonctionnalit� du r�p�titeur.
J'aurais donc aim� que quelqu'un m'aide � convertir la fonction de connexion au r�petiteur du client java d'UltraVNC en actionscript afin de l'int�grer dans l'outils :
(et plus particulierement la ligne 16 sur la conception d'un tableau de bytes)
voici la fonction ::
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
private void doRepeater(Socket sock, String host, int port) throws IOException {
// Read the RFB protocol version
final String buf2 = "";
sock.getOutputStream().write(buf2.getBytes());
DataInputStream is = new DataInputStream(sock.getInputStream());
String line = is.readLine();
// Write the ID
//if (!id.startsWith("ID:"))
//id = "ID:" + id;
String dest = host + ":" + port;
byte[] buf = new byte[250];
System.arraycopy(dest.getBytes("ISO-8859-1"), 0, buf, 0, dest.length());
sock.getOutputStream().write(buf);
} |
merci pour votre aide
Guibsou