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
 
 
Search All Tutorials
  

 
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
 
Java
  JDO Tutorials
  EAI Articles
  Struts Tutorials
  Java Tutorials
  Java Certification
  Java Applet
Questions
Comments

Create a ToolBar in Java

                         

In this section, you will learn how to create toolbar in java. Swing provides a most important feature for creating an interactive component. Toolbar is a area which is situated inside the main window of any applications on top. Tool Bar contains multiple command buttons for shortcuts. The toolbar has been arranged horizontal in this program but, if you want to make it vertically, you can do so. Pictorial representation is given below:

Horizontal Tool Bar

Vertical Tool Bar

Here, you will see a simple toolbar, Which have three command buttons like: cut, copy and paste with small images. For showing these three buttons on the toolbar of the frame various APIs as follows have been used:

JToolBar():
This is the constructor of the JTooBar class which has been used to create a new toolbar.

JToolBar.HORIZONTAL
This is the constant field of the JToolBar class which support to situating the Tool Bar horizontal on the frame.

Here is the code of program:

import javax.swing.*;
import java.awt.*;

public class CreateToolbar{
  public static void main(String[] args) {
    JFrame frame = new JFrame("Create a toolbar Which have three 
buttons Such as: Cut, Copy, Paste"
);
    JToolBar toolbar = new JToolBar("Toolbar", JToolBar.HORIZONTAL);
    JButton cutbutton = new JButton(new ImageIcon("cut.gif"));
    toolbar.add(cutbutton);
    JButton copybutton = new JButton(new ImageIcon("copy.gif"));
    toolbar.add(copybutton);
    JButton pastebutton = new JButton(new ImageIcon("paste.gif"));
    toolbar.add(pastebutton);
    frame.getContentPane().add(toolbar,BorderLayout.NORTH);
    frame.setUndecorated(true);
    frame.getRootPane().setWindowDecorationStyle(JRootPane.PLAIN_DIALOG);
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.setSize(500,400);
    frame.setVisible(true);
  }
}

Download this example.

                         

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

Current Comments

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

really excellent and superb site...!!!

Posted by lakshmi on Tuesday, 09.23.08 @ 15:57pm | #80631

Let me know how can I contact for further.

Posted by Lee on Sunday, 09.21.08 @ 10:10am | #80575

Simply
Superb.

Posted by Ashish on Friday, 05.9.08 @ 13:25pm | #59008

WONDERFUL JOB DONE ..... THIS WEBSITE IS MASTER PIECE FOR ANY JAVA PROGRAMMER....


REALLY IM IMPRESSED... I HAVE LEARNED A LOT...

FIRST WEBSITE FOR WHICH I HAVE LEFT A COMMENT

Posted by gaurav on Friday, 07.13.07 @ 19:45pm | #21228

Its Excellent, The method u had followed is also nice.

I want to know more about Jtoolbar.
How can I add more number(ex.50) of controls or Buttons in the JToolbar.

Please reply & Explain this as code to my mail id muthurama@rediffmail.com

Let me know how can I contact for further.

Posted by Muthuramakrishnan.K on Saturday, 05.5.07 @ 10:58am | #15301

how do i get java

Posted by ghgh on Tuesday, 02.13.07 @ 00:44am | #7635

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.

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

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

Copyright © 2008. All rights reserved.