Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
1  
You need to import DBusConnection, in much the same way you did DBusInterface. – Marvo Jan 1 at 8:42

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.