AWT Dialog Class
Introduction Dialog class control represents a top-level window with a title and a border used to take some form of input from the user. Class declaration Following is the declaration…
Introduction Dialog class control represents a top-level window with a title and a border used to take some form of input from the user. Class declaration Following is the declaration…
Introduction Scrollbar class control represents a scroll bar component in order to enable users to select from a range of values. Class declaration The Following is the declaration for java.awt.Scrollbar class: public…
Introduction Image class control is the superclass for all image classes representing graphical images. Class declaration The Following is the declaration for java.awt.Image class: public abstract class Image extends Object Field Following…
Introduction Canvas class control represents a rectangular area where the application can draw something or can receive inputs created by the user. Class declaration Following is the declaration for java.awt.Canvas class: public…
Introduction Choice class control is used to show pop up menu of choices. The selected choice is shown at the top of the menu. Class declaration Following is the declaration…
Introduction The TextArea class control in AWT provides us multiline editor area. The user can type here as much as he wants. When the text in the text area becomes…
In this guide, we will discuss Message Examples in HTTP. Example 1 HTTP request to fetch hello.htm page from the web server running on adglob.in. Client request GET /hello.htm HTTP/1.1 User-Agent: Mozilla/4.0 (compatible;…
In this guide, we will discuss Security in HTTP. HTTP is used for communications over the internet, so application developers, information providers, and users should be aware of the security…
In this guide, we will discuss URL Encoding in HTTP. HTTP URLs can only be sent over the Internet using the ASCII character-set, which often contain characters outside the ASCII set.…
In this guide, we will discuss Caching in HTTP. HTTP is typically used for distributed information systems, where performance can be improved by the use of response caches. The HTTP/1.1…