Home | Ajax | BioInformatics | Dojo | EAI | EJB | Hibernate | J2ME | Java | Java Glossary | Java Servlets | JavaScript | Jboss | JDBC | JDO | Jmeter | JSF | JSP | JUnit | Maven | MySQL | Spring Framework | SQL | Struts | Technology | WAP | Web Services | XML


 
  
 
Programming Tutorials: Ajax | Articles | JSP | Bioinformatics | Database | Free Books | Hibernate | J2EE | J2ME | Java | JavaScript | JDBC | JMS | Linux | MS Technology | PHP | RMI | Web-Services | Servlets | Struts | UML
 

 
Facing Programming Problem?
Ask Questions?, Browse Latest Questions, Question-Answer Guidelines
Java
  JDO Tutorials
  EAI Articles
  Struts Tutorials
  Java Tutorials
  Java Certification
  Java Applet
Questions
Comments

Setting the Icon for the frame in Java

                         

Introduction

Here, you will learn how to set the icon of the frame.

This program is the detailed illustration to set the icon to the frame. Toolkit class has been used to get the image and then the image is used to display as frame icon. Toolkit class is used to bind the various components to particular native toolkit implementations. 

getDefaultToolkit():
This method returns the default toolkit.

getImage(url or filename):
This method retrieves the pixels data of the image which can be either in format of .gif, .jpeg or .png. If the security manager installed then the getImage() method first check whether the specified file name has the permission to use and then retrieves the image in pixels format.

Here is the code of the program : 

import java.awt.*;

public class AwtSetIconOfFrame{
  public static void main(String[] args){
    Frame frame = new Frame("Icon setting for the Awt Frame");
    Image icon = Toolkit.getDefaultToolkit().getImage("icon_confused.gif");
    Label lbl = new Label("Welcome in Roseindia.net Tutorial.",Label.CENTER);
    frame.add(lbl);
    frame.setSize(400,400);
    frame.setIconImage(icon);
    frame.setVisible(true);
  }
}

Download this example.

                         

Leave your comment:

Name:

Email:

URL:

Title:

Comments:


Enter Code:

Audio Version
Reload Image
 

Note: Emails will not be visible or used in any way, and are not required. Please keep comments relevant. Any content deemed inappropriate or offensive may be edited and/or deleted.

No HTML code is allowed. Line breaks will be converted automatically. URLs will be auto-linked. Please use BBCode to format your text.

Add This Tutorial To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 

Current Comments

1 comments so far (
post your own) View All Comments Latest 10 Comments:

this is best material i had ever seen.

Posted by jagdish on Monday, 07.16.07 @ 15:21pm | #21379

Latest Searches:
how to use date in mys
using check box in dat
different Font
jdbc html jsp
factorial
spring MVC application
objective c
Tutorial:FlashBasicPas
cd change directory in
save image to file
structs2 action
how to convert Inputst
velocity
insert calendar in jsp
java file colum
chicken
creating menus in jsp
LinkedPane in dojo
Lucene in Action
Hibernate Mapping
parse string to value
property formula hib
ant build tool
java: read string arra
array list
map iteration in jstl
how to remove space in
HTML tags in JSP
jsf tree set href
Example de tokenizer
code for changing pass
Java Read File Line by
HWPF
java conversion of dec
HttpSessionActivationL
displaying text in a d
resultsetmetadafta
core java Applets
how to write hql in da
C shell
align checkboxlist in
java mail with attachm
Visual Basic Date and
Java swing show()
mail merge in word
toInt()
multithrading
Take user input using
substring
Photoshop Web Layouts
logging
J2ME Gauge
ajax database conectiv
<select><option> jsp d
good desig
Sort the TreeMap by it
ASP EXAMPLE' and 1=1 a
Photoshop Photo Effect
updating two parameter
set colours Jtree
bean :write excel she
Tomcat deploy JSP
pb tree implementati
struts2 tag
session validation in
Boolean
Database MySQL Using S
struts project
how to write in pdf us
Hibernate Min() Functi
Combattons la programm
transientinjava
message beans
substring/com/gallery/
Eclipse Plugin- Editor
internationalized stru
sort array
Ajax with JSP
quiz
velocity rules engine
Java String toLowerCase Example
Java String toCharArray Example
Java String substring Example
Java String indexOf Example
Java String startsWith Example
Java String hashCode Example
Java String matches Example
Java String length Example
Java String lastIndexOf Example
Java String isEmpty Example
Java String equalsIgnoreCase Example
Java String equals Example
Java String endsWith Example
Java String copyValueOf Example
Java String contentEquals Example
  EAI Articles
  Java Certification
Tell A Friend
Your Friend Name
Search Tutorials

 

 
 
Browse all Java Tutorials
Java JSP Struts Servlets Hibernate XML
Ajax JDBC EJB MySQL JavaScript JSF
Maven2 Tutorial JEE5 Tutorial Java Threading Tutorial Photoshop Tutorials Linux Technology
Technology Revolutions Eclipse Spring Tutorial Bioinformatics Tutorials Tools SQL
 

Home | JSP | EJB | JDBC | Java Servlets | WAP  | Free JSP Hosting  | Search Engine | News Archive | Jboss 3.0 tutorial | Free Linux CD's | Forum | Blogs

About Us | Advertising On RoseIndia.net  | Site Map

India News

Indian Software Development Company | iPhone Development Company in India | Java Training Delhi | Java Training at Noida |

Send your comments, Suggestions or Queries regarding this site at roseindia_net@yahoo.com.

Copyright © 2008. All rights reserved.