I use java and try to compile this code:
import org.freedesktop.dbus.DBusInterface;
import org.freedesktop.dbus.DBusInterfaceName;
@DBusInterfaceName("net.sacredchao.QuodLibet")
interface Quodlibet extends DBusInterface {
void Play();
void Pause();
}
class Main{
public static void main (String[] args){
DBusConnection dc = DBusConnection.getConnection(DBusConnection.SESSION);
Quodlibet player = dc.getRemoteObject("net.sacredchao.QuodLibet",
"/net/sacredchao/QuodLibet", Quodlibet.class);
player.Play();
Thread.sleep(3000, 0);
player.Pause();
dc.disconnect();
}
}
I use -classpath to show show the place where package dbus is located and compile:
$ javac -classpath /usr/share/java/dbus-2.8.jar player.java
It locates imported packages but I get the following mistake:
player.java:12: cannot find symbol
symbol : class DBusConnection
The class DBusConnection is a basic dbus class according to dbus documentation, but it still doesn't work.