使用dbus调用java方法



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

我写这篇文章是因为官方文件很差,我花了几个小时才弄清楚如何做到这一点

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

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