Jetbrain provides documents but I can't find how to run compiled class file of Kotolin.

hello.kt:

fun main(args : Array<String>) {
  println("Hello, world!")
}

compile:

$ kotlinc -out dist -src hello.kt
$ ls dist
namespace.class
$ java dist/namespace
Exception in thread "main" java.lang.NoClassDefFoundError: dist/namespace (wrong name: namespace)
$ java -jar /usr/local/kotlin/lib/kotlin-runtime.jar
Failed to load Main-Class manifest attribute from
/usr/local/kotlin/lib/kotlin-runtime.jar 

How to run Kotlin program?

link|improve this question

0% accept rate
feedback

2 Answers

We ran into the same program and blogged our solution here: http://blog.ocheyedan.net/blog/2012/02/19/running-kotlin-code/

Basically you just need to invoke java with the -cp and the main class of 'namespace'. From your question, the java invocation would look something like this:

java -cp /usr/local/kotlin/lib/kotlin-runtime.jar:dist/namespace.class namespace

link|improve this answer
Thankyou, but I can't run my class file by above command. Error "Exception in thread "main" java.lang.NoClassDefFoundError: namespace" happened. – kwatch Feb 20 at 23:42
Your classpath to the java process needs to have two things on it; one is the kotlin-runtime.jar where ever that might be on your system as well as all the compiled Kotlin code (which from your example looks like that from your dist directory). Just to be sure, have you tried the Ant script from my referenced blog-post? – blangel Feb 24 at 16:51
feedback

If you are in the IDE, right-click the editor and choose "Run namespace" Otherwise, compile and run the *.namespace class as a normal Java class.

link|improve this answer
I got error "Exception in thread "main" java.lang.NoClassDefFoundError: namespace" and I can't solve it. – kwatch Feb 20 at 23:45
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.