用dbus调用java方法

时间:2013-02-09 20:04:57

标签: java dbus

如何使用dbus导出java方法或对象?

我写这篇文章是因为官方文档很差,我花了几个小时才弄清楚如何去做。

理想情况下,DBus接口应该放在java包中

1 个答案:

答案 0 :(得分:3)

<强> DBus.java

import org.freedesktop.dbus.DBusInterface;
import org.freedesktop.dbus.DBusInterfaceName;    

@DBusInterfaceName("org.printer")
public interface DBus extends DBusInterface {
    //Methods to export
    public void Print(String message);
}

<强> Main.java

import org.freedesktop.dbus.DBusConnection;
import org.freedesktop.dbus.exceptions.DBusException;

public class Main {    
    public static void main(String[] args) {
        Printer p = new Printer();

        try {
            DBusConnection conn = DBusConnection.getConnection(DBusConnection.SESSION);
            //Creates a bus name, it must contain some dots.
            conn.requestBusName("org.printer");
            //Exports the printer object
            conn.exportObject("/org/printer/MessagePrinter", p);
       } catch (DBusException DBe) {
           DBe.printStackTrace();
           conn.disconnect();
           return;
       }
    }
}

//Printer object, implements the dbus interface and gets
//called when the methods are invoked.
class Printer implements DBus {
    public boolean isRemote() {
        return false;
    }

    public void Print(String message) {
        System.out.println(message);
    }
}

您可以使用shell中的qdbus尝试此操作,运行:

qdbus org.printer /org/printer/MessagePrinter org.printer.Print test