Lets define a date in the form of a String ``` String ds = "15/03/2000"; ``` Then we use objec ... Read More
Debugging is different than running a program. Instead of running the entire program at once ,we deb ... Read More
${__javaScript(new Date();)}--->Used to print current date ${__javaScript(2>7)}--->will give fals ... Read More
Encapsualtion is used to make class members non-accesible outside the class. We can make some cl ... Read More
Collections have various inbuilt methods that are very powerfull like Collections.reverse , Collecti ... Read More
We have seen in an earlier example for matchers that we can find the start or end of a reg expressi ... Read More
* Older versions of java used io methods and new ones use java.nio * We can convert from java.io to ... Read More
Lets discuss some methods commonly used with Sets in java * addAll is used to add one set to ano ... Read More
Use of replace,replaceAll,matches, . and ^ are discussed below. ``` String myString = "Its going ... Read More
Buffered reader in java is similar to buffered writer. It writes data to files in large chunks. Exam ... Read More