如何使用Java发送M-SEARCH查询

时间:2015-02-09 03:52:40

标签: java networking ssdp

我的网络上有一个Roku设备,我希望能够以编程方式发现它。 official Roku documentation说:

  

有一个标准的SSDP组播地址和端口   (239.255.255.250:1900)用于本地网络通信。   Roku响应此IP地址和端口上的M-SEARCH查询。

     

为了查询roku ip地址,您的程序可以发送   以下请求使用http协议到239.255.255.250端口   1900:

他们提供了一个使用netcat的例子,他们说wireshark可以用来查找结果。他们还说:

  

外部控制协议可以通过控制Roku   网络。外部控制服务可通过SSDP发现   (简单服务发现协议)。该服务是一个简单的RESTful   API 几乎可以在任何编程中被程序访问   环境。

我有一个java程序,根据其IP地址控制我的Roku,我想实现一个使用这个SSDP在网络上发现它的函数。

如何使用java发送M-SEARCH查询?我绝对不知道如何做到这一点。这是一个获取/发布请求?如果有人能指出我正确的方向,我将非常感激!

1 个答案:

答案 0 :(得分:5)

我找到了一个java解决方案:

/* multicast SSDP M-SEARCH example for 
 * finding the IP Address of a Roku
 * device. For more info go to: 
 * http://sdkdocs.roku.com/display/sdkdoc/External+Control+Guide 
 */

import java.io.*;
import java.net.*;

class msearchSSDPRequest {
    public static void main(String args[]) throws Exception {
        /* create byte arrays to hold our send and response data */
        byte[] sendData = new byte[1024];
        byte[] receiveData = new byte[1024];

        /* our M-SEARCH data as a byte array */
        String MSEARCH = "M-SEARCH * HTTP/1.1\nHost: 239.255.255.250:1900\nMan: \"ssdp:discover\"\nST: roku:ecp\n"; 
        sendData = MSEARCH.getBytes();

        /* create a packet from our data destined for 239.255.255.250:1900 */
        DatagramPacket sendPacket = new DatagramPacket(sendData, sendData.length, InetAddress.getByName("239.255.255.250"), 1900);

        /* send packet to the socket we're creating */
        DatagramSocket clientSocket = new DatagramSocket();
        clientSocket.send(sendPacket);

        /* recieve response and store in our receivePacket */
        DatagramPacket receivePacket = new DatagramPacket(receiveData, receiveData.length);
        clientSocket.receive(receivePacket);

        /* get the response as a string */
        String response = new String(receivePacket.getData());

        /* print the response */
        System.out.println(response);

        /* close the socket */
        clientSocket.close();
    }
}