[MonoDevelop] Using IKVM (Java) with monodevelop

Uwe Fechner ufechner@sk28.de
Fri, 02 Jul 2004 19:45:10 +0200


Hello,

I created the default IKVM console project.

/*
 * application.java
 */
import cli.System.*;

public class application {
    public static void main(java.lang.String[] args) {
        Console.WriteLine ("Hello, World!");
    }
}

If I try to run it I get:

[Type=Error, Description= error: Can't find default package 
`cli.System'. Check the CLASSPATH environment variable and the access to 
the archives]

echo $CLASSPATH
/opt/blackdown-jdk-1.4.1/jre/lib/rt.jar:.

Whicht package do I need in the classpath?

I don't have a file cli.System.

Where can I get it?

Uwe Fechner