How to post a simple Java mathematical calculation app on a cpanel linux hosted wordpress website?

I have just started learning Java programming (Yes, I am an absolute beginner and use Java only in the training institute) and I want to post a simple Java calculation app on a cPanel Linux hosted WordPress website. How can I do this in simple steps?

Related posts

Leave a Reply

1 comment

  1. <applet code="SomeApplet.class" width=480 height=240 codebase="http://www.yoururl.com/wp-content/applet";>
    <param name="iconwidth" value="48">
    </param><param name="iconheight" value="48">
    </param></applet>
    

    This could work.

    Or maybe preferably this:

    <applet width="400" height="400" archive="/applets/interleaves.jar" code="interleaves" />
    

    If you use Eclipse (or any other IDE) it’s fairly simple creating a .class file to a .jar.