Bye-bye gray box: applet loading secrets
You've just completed your masterpiece -- a killer Java applet that is bound to make any Web site stand out from the rest. The only problem is it's a little bit bulky; instead of using the default Java components, you opted to design and build your own high-performace ones. Good move! But there is a downside: the end-user must download all of them. No problem! It's worth the wait. But wait, what about the dreaded "gray" box? While loading, Java applets appear on the Web page as a plain-jane gray box with little or no status information (unless you're looking at the status bar at the bottom of your browser's window). Even after a Web page has loaded (and the familiar Netscape or Explorer "loading" animation has stopped), a Java applet may still be loading. This can be a bit confusing to the person waiting for a Java applet. What's going on? Is it loading? Is it broken? Only the most experienced users are likely to know. And this is a big problem considering more than one user will probably get a little restless and jet off to a different page instead of waiting. So what to do? There are lots of ways to make applets load faster. The first way is to design applets that use only the default Java components (which are already on the user's hard drive). Sadly, this solution sometimes is inappropriate or impossible -- or just plain unsightly. Another way would be to put the applet on the user's harddrive directly. But most users would be reluctant to go to the trouble of downloading and installing a bunch of class files. And CAB or JAR files help improve download time, but users still have to wait for the whole thing to download before seeing the applet. The first step into finding a solution is to take a look at the applet itself. We'll use a simple example here: As you can see, there is much to be desired with respect to the "gray" box. We'll employ a couple of tricky methods to get rid of it as soon as possible and at the same time put something dazzling on the screen so that our users are amused while they're waiting. To do this, we add a few simple items to our applet:
Our resulting applet looks something like this: Does this really work? The truth is, we can't get rid of the gray screen completely. But we can try and get rid of it as soon as possible -- even before the Applet is entirely loaded. The key to doing this is to paint something flashy to the screen before you load all of the classes and images that your applet is going to use. This will distract the user while they're waiting for all the good stuff from your applet to load. Trust me, it works! And if you don't trust me, just think back to the last time you waited for a stalled Web page to load based only on the browser's unsavory little animation. Chris Knight is an independent software developer building nifty software projects such as swIRC and Retrix RetroBoard. He also is presently studying Communication, Philosophy and Computer Science at Simon Fraser University. He can be contacted at chris@knight.net.
|
This article was originally published on July 9, 1998