Found 2617 Articles for Java

How do I create a java.sql.Date object in Java?

Maruthi Krishna
Updated on 05-Feb-2021 10:41:48

5K+ Views

Using the ConstructorThe java.sql.Date represents the date value in JDBC. The constructor of this class accepts a long value representing the desired date and creates respective Date object.Date(long date)You can create this object using this constructor.ExampleLive Demoimport java.text.ParseException; import java.text.SimpleDateFormat; public class Demo {    public static void main(String args[]) throws ParseException {         String str = "26-09-1989";       SimpleDateFormat obj = new SimpleDateFormat("dd-MM-yyyy");             long epoch = obj.parse(str).getTime();             System.out.println("Date value: "+epoch);       //Creating java.util.Date object       java.util.Date date = ... Read More

How to create date object in Java?

Maruthi Krishna
Updated on 14-Sep-2023 02:38:59

28K+ Views

Using the Date classYou can create a Date object using the Date() constructor of java.util.Date constructor as shown in the following example. The object created using this constructor represents the current time.ExampleLive Demoimport java.util.Date; public class CreateDate {    public static void main(String args[]) {             Date date = new Date();       System.out.print(date);    } }OutputThu Nov 02 15:43:01 IST 2018Using the SimpleDateFormat classUsing the SimpleDateFormat class and the parse() method of this you can parse a date string in the required format and create a Date object representing the specified date.ExampleLive Demoimport java.text.ParseException; ... Read More

What is the difference between Java and Java EE

Maruthi Krishna
Updated on 05-Feb-2021 10:39:41

788 Views

JSE (Java Standard Edition)By using JavaSE you can develop stand-alone application ex: adobe reader, anti-virus, media players, etc. Java SE is also known as core java.lang: Language basics.util: Collection framework, events, data structure and other utility classes such as date.io: File operations, and other input and output operations.math: Multi precision arithmetics.nio: Non-blocking I/O framework for Java.net: Classes an API’s related to networking.security: This package provides classes and interfaces such as key generation, encryption, and decryption which belongs to the security framework.sql: Classes and interfaces for accessing/manipulating the data stored in databases and data sources.awt: Classes and interfaces to create GUI ... Read More

How to create a default constructor in Java?

Maruthi Krishna
Updated on 05-Feb-2021 10:37:53

3K+ Views

Default constructor (No-arg constructor)A no-arg constructor doesn’t accepts any parameters, it instantiates the class variables with their respective default values (i.e. null for objects, 0.0 for float and double, false for Boolean, 0 for byte, short, int and, long).There is no need to invoke constructors explicitly these are automatically invoked at the time of instantiation.Rules to be rememberedWhile defining the constructors you should keep the following points in mind.A constructor does not have return type.The name of the constructor is same as the name of the class.A constructor cannot be abstract, final, static and Synchronized.You can use the access specifiers ... Read More

How to create a parameterized constructor in Java?

Maruthi Krishna
Updated on 05-Feb-2021 10:36:13

2K+ Views

A constructor is similar to method and it is invoked at the time creating an object of the class, it is generally used to initialize the instance variables of a class. The constructors have same name as their class and, have no return type.There are two types of constructors parameterized constructors and no-arg constructors.Parameterized constructorsA parameterized constructor accepts parameters with which you can initialize the instance variables. Using parameterized constructor, you can initialize the class variables dynamically at the time of instantiating the class with distinct values.Examplepublic class StudentData {    private String name;    private int age;     ... Read More

What are parametrized constructors in Java?

Maruthi Krishna
Updated on 05-Feb-2021 10:35:49

13K+ Views

A constructor is similar to method and it is invoked at the time creating an object of the class, it is generally used to initialize the instance variables of a class. The constructors have same name as their class and, have no return type.Parameterized constructorsA parameterized constructor accepts parameters with which you can initialize the instance variables. Using parameterized constructor, you can initialize the class variables dynamically at the time of instantiating the class with distinct values.Syntaxpublic class Sample{    Int i;    public sample(int i){       this.i = i;    } }ExampleLive Demopublic class Test {   ... Read More

What is the return type of a Constructor in Java?

Maruthi Krishna
Updated on 05-Feb-2021 10:32:03

5K+ Views

A constructor is similar to method and it is invoked at the time creating an object of the class, it is generally used to initialize the instance variables of a class. The constructors have same name as their class.Return type of a constructorA constructor doesn’t have any return type.The data type of the value retuned by a method may vary, return type of a method indicates this value.A constructor doesn’t return any values explicitly, it returns the instance of the class to which it belongs.ExampleFollowing is an example of a constructor in java −Live Demopublic class Sample{    public Sample(){ ... Read More

What is the use of parametrized constructor in Java?

Maruthi Krishna
Updated on 05-Feb-2021 10:31:10

372 Views

A constructor is similar to method and it is invoked at the time creating an object of the class, it is generally used to initialize the instance variables of a class. The constructors have same name as their class and, have no return type.There are two types of constructors parameterized constructors and no-arg constructors a parameterized constructor accepts parameters.The main purpose of a constructor is to initialize the instance variables of a class. Using a parameterized constructor, you can initialize the instance variables dynamically with the values specified at the time of instantiation.public class Sample{    Int i;    public ... Read More

How to use regular expression in Java to pattern match?

Maruthi Krishna
Updated on 05-Feb-2021 10:27:49

197 Views

A regular expression is a string of characters that defines/forms a pattern to search an input text. A regular expression may contain one or more characters, using a regular expression you can search or replace a string.Java provides the java.util.regex package for pattern matching with regular expressions. The pattern class of this package is a compiled representation of a regular expression. To match a regular expression with a String this class provides two methods namely −compile(): This method accepts a String representing a regular expression and returns an object of the Pattern object.matcher(): This method accepts a String value and creates ... Read More

Is Java matcher thread safe in Java?

Maruthi Krishna
Updated on 05-Feb-2021 10:27:28

721 Views

A regular expression is a special sequence of characters that helps you match or find other strings or sets of strings, using a specialized syntax held in a pattern. They can be used to search, edit, or manipulate text and data. Java provides the java.util.regex package for pattern matching with regular expressions.Matcher classA Matcher object is the engine that interprets the pattern and performs match operations against an input string. Like the Pattern class, Matcher defines no public constructors. You obtain a Matcher object by invoking the matcher() method on a Pattern object.The Instances of this class are not safe ... Read More

Advertisements