Java Applets

In order to run an applet, you must have a web browser. An applet can be a completely utilitarian Java application on the grounds that it has the whole Java API’s available to it. There are some essential contrasts between an applet and a standalone Java application, including the accompanying: A main() function is not … Read more

Packages in Java

Packages are utilized as a part of Java so as to avert naming clashes, to control access, to make seeking/placing and utilization of classes, interfaces, identifications and annotations less demanding, in addition to several others. A Package can be described as a collection of related types (classes, interfaces, counts and annotations) giving access security and … Read more

Declaring Interfaces in Java

In order to declare an interface, you must use the interface keyword. Here is a straightforward illustration that can be used for declaring an interface. The standard structure and order of statements that can be used for this purpose are as follows: import java.lang.*; public interface Interfacename { //Statements} Interfaces have the accompanying properties: An … Read more

Interfaces and Packages in Java

Abstract methods when brought together form a package. A class actualizes an interface, consequently inheriting the interface’s abstract methods. An interface is not a class. Composing an interface is like composing a class. However, they are two separate ideas. A class portrays the properties and behaviours of an object. On the other hand, An interface … Read more

Common Exceptions in Java

In Java, it is conceivable to characterize two categories of Exceptions and Errors. Programmatic exceptions: – These special cases are tossed unequivocally by the application or the API software engineers Examples: Illegalargumentexception, IllegalStateException. JVM Exceptions: – These are exemptions/mistakes that are solely or consistently thrown by the JVM. Some exceptions of this class are ArrayIndexOutOfBoundsException, … Read more

Creating An Exception in Java

You can make your own exemptions in Java. Remember the accompanying focuses when composing your classes for exceptions: All exemptions must be an offspring of Throwable. If you need to compose a checked exemption that is naturally authorized by the Handle or Declare Rule, you have to create an extension of the Exception class. If … Read more

Exception Methods in Java

Here is a list of methods that are available as part of the Throwable class. public Throwable getcause() This method gives back the cause of the exemption as mentioned by a Throwable item. public String getmessage() This method gives back the exception’s complete message and details. This message is usually included in the Throwable constructor. … Read more

Hierarchy of Exceptions in Java

All classes of exceptions are subtypes of the java.lang.exception class. This class is a subclass of the Throwable class. Other than the exception class, there is an alternate subclass called Error which is gotten from the Throwable class. These special case scenarios are not ordinarily caught by the Java programs. These conditions ordinarily happen if … Read more

Exception Handling in Java

During the execution of your program, it may experience abnormal or exceptional conditions. As a result of these, the system may crash. An exception may occur due to a number of reasons. Some of these include: A file that needs to be opened can’t be found. A client has entered invalid information. A system association … Read more

File Handling in Java

All the classes that you may require on a day to day I/O programming basis are contained in the package java.io. The streams present in this package broadly represent output and input locations. Moreover, the streams supported in Java include object, primitives and localized characters. A stream can simply be described as data, arranged in … Read more