<html><body>
<p>Many thanks for all of you:) but I found the new problem when I tried as this way.<br>
<font size="4">I want to execute one external java-based application, so I added the following code in mainmenu.xml according to your help and instruction:<br>
&lt;button&gt;<br>
   &lt;type&gt;Extern_Application&lt;/type&gt;<br>
   &lt;text&gt;Extern Application&lt;/text&gt;<br>
   &lt;action&gt;EXEC sh /usr/local/bin/java_application.sh&lt;/action&gt;<br>
&lt;/button&gt;<br>
<br>
the file: java_application.sh only includes the following content:<br>
java -classpath . VoteDialog<br>
(VoteDialog is one swing-based UI application) <br>
<br>
but, when I choose the &quot;Extern Application&quot; item(), no any action, and I found the following warning appear on terminal: <br>
Exception in thread &quot;main&quot; java.lang.NoClassDefFoundError: VoteDialog <br>
<br>
but because I can run this java application(VoteDialog) on terminal properlly, via run: java VoteDialog; <br>
I think the CLASSPATH is ok in fact, then What' s wrong with this?<br>
</font></body></html>