website/content/blog/2017-05-24-viewing-java-applets.md

3.2 KiB
Raw Blame History

id title date author aliases permalink medium_post mf2_syndicate-to mf2_cite mf2_syndication tags
2174 Viewing Java Applets 2017-05-24T15:59:45+00:00 Brandon Rozek
/2017/05/viewing-java-applets/
/2017/05/viewing-java-applets/
O:11:"Medium_Post":11:{s:16:"author_image_url";N;s:10:"author_url";N;s:11:"byline_name";N;s:12:"byline_email";N;s:10:"cross_link";N;s:2:"id";N;s:21:"follower_notification";N;s:7:"license";N;s:14:"publication_id";N;s:6:"status";N;s:3:"url";N;}
a:1:{i:0;s:22:"bridgy-publish_twitter";}
a:4:{s:9:"published";s:25:"0000-01-01T00:00:00+00:00";s:7:"updated";s:25:"0000-01-01T00:00:00+00:00";s:8:"category";a:1:{i:0;s:0:"";}s:6:"author";a:0:{}}
a:1:{i:0;s:60:"https://twitter.com/B_RozekJournal/status/867409810932760576";}
Java

When you use an IDE there are many things you can take for granted. A section of an intro level computer science course at my university uses JGrasp to build Java Applets.

Following around using a normal text editor, I found that I couldnt just compile and run the code like I have with my java programs in the past. To be able to help around and assist in the course, I need to be able to build and run these applications. The rest of this article describes the process I underwent to be able to use my existing setup to write and build java applets. Of course you can always install JGrasp and have that all built in, but its always nice to not have to change your workflow.

When I tried following along, I would receive the following error

Main method not found in class HelloWorld, please define main method as...

Which makes sense since I have never defined a main method inside my source code. So how do I go about doing this?

Setup

Java Applets are meant to run on web pages, because of this one needs an html file to host the applet. The following code gives you the bare minimum for setting up the html file. I called it HelloWorld.html.


<html>
    <head><title>Applet Container<title>
    <body>
        <applet code='HelloWorld.class' width=400 height=400></applet>
    </body>
</html>

Hello World Program

To get it up and running, I will show a “Hello World” like application for applets.


import javax.swing.JApplet;
import java.awt.Graphics;

public class HelloWorld extends JApplet {
    public void paint(Graphics g) {
        g.drawString("Hello World", 30, 30);
    }
} 

Running the Applet

Now we need to compile the code

javac HelloWorld.java

Then run the appletviewer

appletviewer HelloWorld.html

Conclusion

This tutorial concludes the setup of running a simple Java applet. From here you can look at the different methods in the Graphics library and play around 😀