Tag: Advance Java
Unit 7: Enterprise Application Architectures
2-Tier Architecture & 3- Tier All J2EE applications are broadly divided into two types. These are 2 tier or 3 tier architecture. Basically at high level we can say that 2-tier architecture is Client server application and 3-tier architecture is Web based application. Two-Tier Architecture: The two-tier is based on Client Server architecture. The two-tier […]
Continue ReadingUnit 4: Using AWT controls, Layout Managers, and Menus
4.2.1Label The object of Label class is a component for placing text in a container. It is used to display a single line of read only text. The text can be changed by an application but a user cannot edit it directly. Example
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
import java.awt.*; class LabelExample{ public static void main(String args[]){ Frame f= new Frame("Label Example"); Label l1,l2; l1=new Label("First Label."); l1.setBounds(50,100, 100,30); l2=new Label("Second Label."); l2.setBounds(50,150, 100,30); f.add(l1); f.add(l2); f.setSize(400,400); f.setLayout(null); f.setVisible(true); } } |
output:- Button The button class is used to create a labeled button that […]
Continue ReadingUnit 1: The Applet Class
Applet Applets are small Java applications that can be accessed on an Internet server, transported over Internet, and can be automatically installed and run as apart of a web document. After a user receives an applet, the applet can produce a graphical user interface. It has limited access to resources so that it can run […]
Continue ReadingUnit 2: Even handling
Event Handling Any program that uses GUI (graphical user interface) such as Java application written for windows, is event driven. Event describes the change in state of any object. For Example : Pressing a button, Entering a character in Textbox, Clicking or Dragging a mouse, etc. Components of Event Handling Event handling has three main components, Events […]
Continue ReadingUnit 6: Exploring Swing
6.2 JTextField JTextField is used for taking input of single line of text. It is most widely used text component. It has three constructors,
1 2 3 |
JTextField(int cols) JTextField(String str, int cols) JTextField(String str) |
xample using JTextField
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
import javax.swing.*; import java.awt.event.*; import java.awt.*; public class MyTextField extends JFrame { public MyTextField() { JTextField jtf = new JTextField(20); //creating JTextField. add(jtf); //adding JTextField to frame. setLayout(new FlowLayout()); setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); setSize(400, 400); setVisible(true); } public static void main(String[] args) { new MyTextField(); } } |
6.3 JButton JButton class provides functionality of a button. JButton class has three constuctors,
1 2 3 |
JButton(Icon ic) JButton(String str) JButton(String str, Icon ic) |
It allows a button to be created using icon, a string or […]
Continue ReadingUnit 3: Introducing AWT
3.1 AWT classes AWT contains large number of classes and methods that allows you to create and manage graphical user interface ( GUI ) applications, such as windows, buttons, scroll bars,etc. 2 packages – java.awt and java.awt.event – are commonly-used. The java.awt package contains the core AWT graphics classes: GUI Component classes, such as Button, TextField, and Label. GUI Container classes, such as Frame and Panel. Layout managers, such as FlowLayout, BorderLayout and GridLayout. […]
Continue ReadingJava 2 Old Paper Answer
SAQ 2016 2017 2018 2022 2016 Batch 2017 Batch
Continue Reading