aspose file tools
The moose likes Applets and the fly likes imageobserver runtime error Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » Applets
Reply Bookmark "imageobserver runtime error" Watch "imageobserver runtime error" New topic
Author

imageobserver runtime error

vijay Krishnan
Greenhorn

Joined: Jul 27, 2006
Posts: 14
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;

// This applet displays a single image twice,
// once at its normal size and once much wider.

public class ImageDisplayer extends JApplet {

static String imageFile = "D:/vijay_dreams/JavaExamples/pegeon.gif";

public void init() {
Image image = getImage(getCodeBase(), imageFile);
ImagePanel imagePanel = new ImagePanel(image);
getContentPane().add(imagePanel, BorderLayout.CENTER);
}
}

class ImagePanel extends JPanel {


Image image;

public ImagePanel(Image image) {

this.image = image;
}

public void paintComponent(Graphics g) {
super.paintComponent(g); // Paint background

// Draw image at its natural size first.
g.drawImage(image, 0, 0, this); //85x62 image

// Now draw the image scaled.
g.drawImage(image, 90, 0, 300, 62, this);
}
}

**************************************
The above pgm gives me and runtime error as,

/* Exception in thread "main" java.lang.NoSuchMethodError: main */

can anyone explain why?


Thanks and Regards,
viji.
Ulf Dittmer
Marshal

Joined: Mar 22, 2005
Posts: 35241
    
    7
How are you trying to run this? Applets are referenced in an applet tag inside of an HTML page. They can't be run from the command line via the "java" command.

Note that applets do not have access to the local file system, so you will have to sign it, or fiddle with the local security policy.

If you want to run this applet as an application, check out the MainFrame class.
[ December 28, 2006: Message edited by: Ulf Dittmer ]

Android appsImageJ pluginsJava web charts
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: imageobserver runtime error
 
Similar Threads
Image problems
problem relating to jpanel background image
Problem with components/ widgets using JPanel
How to add image inside jPanel ??
Image Display Error