Hello!

We have been testing the libqtjambi-dev package in the repositories. What we
did was just to install this package on a Ubuntu 8.10 box, wrote a small
test program (find attached), sat the classpath

 export CLASSPATH=/usr/share/java/qtjambi.jar:/tmp/simpleTest

, compiled the class:

javac Testjambi.java

, then tried running the program:

java TestJava

without much success.

Also, tried to use the -Djava.library.path (found that the dev package
installed the so files in /usr/lib)

java -Djava.library.path=/usr/lib -Dcom.trolltech.qt.verbose-loading=true
TestJava

but with not much more success. The output from the last one (which also
printed debug info) is attached.

Regards,
Helge Fredriksen
import com.trolltech.qt.gui.QApplication;
import com.trolltech.qt.gui.QWidget;

/**
 * @author Helge Fredriksen
 * @version 1.0 Dec 19, 2008 10:49:53 AM
 */
public class TestJambi {

    public static void main(String[] args) {
        QApplication.initialize(args);

        QWidget qWidget = new QWidget();
        qWidget.show();

        QApplication.exec();
    }

}

Attachment: error.log
Description: Binary data

_______________________________________________
Qt-jambi-interest mailing list
[email protected]
http://lists.trolltech.com/mailman/listinfo/qt-jambi-interest

Reply via email to