Hi,
Thanks a lot for your help.
It's working well now with the ";\n".
Bye.
Selon Olaf Matthes olaf.matthes@gmx.de:
mstamm@itin.fr wrote:
Hello,
I'm trying to send data from java to PD with UDP protocol. I tried this :
netAddress address = InetAddress.getByName("hostName"); int port = 4321;
String ch = "Le message à envoyer";
Try:
String ch = "Le message à envoyer;\n";
Don't know wether Pd likes the 'Ã ', so maybe you'll have to do without it. All messages have to end with a semicolon followed by newline ('\n') to make netreceive happy.
Olaf