Java Forums

Main Menu
Home
Today's Posts
FAQ
Search
Contact Us

Java Network
Java Tips
Java Tips Blog

Sponsored Links





Welcome to the Java Forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community, you will:

  • have access to post topics
  • communicate privately with other members (PM)
  • not see advertisements between posts
  • have the possibility to earn one of our surprises if you are an active member
  • access many other special features that will be introduced later.

Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact us.

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 05-15-2008, 02:30 PM
Member
 
Join Date: May 2008
Posts: 22
amith is on a distinguished road
applet
import java.awt.*;
import java.applet.*;
public class a extends Applet
{
Image q;
public void init()
{

q=getImage(getCodeBase(),"red.png");
}
public void paint(Graphics e)
{
e.drawImage(q,200,290,this);
}
}
i hav written this program but it is not showing any red image it is not showing any thing in applet how can i load the icon.png from a folder do i hav to set the class path if so how
Bookmark Post in Technorati
Reply With Quote
Sponsored Links
  #2 (permalink)  
Old 05-16-2008, 04:24 AM
Senior Member
 
Join Date: Jul 2007
Posts: 1,146
hardwired is on a distinguished road
Code:
// <applet code="LoadAndDraw" width="400" height="400"></applet> import java.awt.*; import java.applet.*; public class LoadAndDraw extends Applet { Image q; public void init() { String path = "images/hawk.jpg"; // Create image object. q=getImage(getCodeBase(), path); // Load the image data. MediaTracker mt = new MediaTracker(this); mt.addImage(q, 0); try { mt.waitForID(0); } catch(InterruptedException e) { System.out.println(mt.statusAll(false)); } } public void paint(Graphics e) { e.drawImage(q, 50, 50, this); } }
Bookmark Post in Technorati
Reply With Quote
Sponsored Links
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
log4j with Applet sunjavaboy Java Applets 0 03-25-2008 01:13 AM
First Applet HELP???? nvidia New To Java 0 08-13-2007 11:11 PM
Applet Question nvidia Java Applets 1 08-13-2007 08:31 PM
Applet kapoorje Java Applets 0 07-24-2007 05:06 PM
Applet, To center text and To open I engage in a dialog in an Applet Marcus Java Applets 4 06-08-2007 07:15 AM


All times are GMT +3. The time now is 09:02 PM.


VBulletin, Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO ©2007, Crawlability, Inc.
Copyright ©2006 - 2007, www.java-forums.org