명시
I need to have a function in MT4 to send alerts out by UDP packet instead of email.
Sending text in Java. Text should be the same as the content of the email.
// String host = "192.168.1.2"; int port = 4711;
public void send(String text, String host, int port) {
try {
// Get the internet address of the specified host
InetAddress address = InetAddress.getByName(host);
byte[] message = text.getBytes();
// Initialize a datagram packet with data and address
DatagramPacket packet = new DatagramPacket(message, message.length, address, port);
// Create a datagram socket, send the packet through it, close it.
DatagramSocket dsocket = new DatagramSocket();
dsocket.send(packet);
dsocket.close();
} catch (Exception e) {
System.err.println(e);
}
}
Thank you!
응답함
1
등급
프로젝트
0
0%
중재
0
기한 초과
0
무료
2
등급
프로젝트
55
40%
중재
1
0%
/
0%
기한 초과
11
20%
무료
프로젝트 정보
예산
10 - 30 USD
