i am using Eclipse and i have a QtJambi project开发者_Go百科 which i would like to export in a .JAR file. I have tryed several times it never worked.
It worked for me on a Swing project, but with a QtJambi project, I dont know how to do it.
Here are the screenshots (maybe it can help you to understand my situation):
- Export wizard (page 1)
- Export wizard (page 3)
Thanks for helping me.
You didn't set a main class on the export (2nd page). So just running java -jar qt.jar
isn't going to work since it has no clue what main(String[])
to invoke.
精彩评论