Log4j
The following blog is a simple insight into a very helpful and widely used framework for logging purpose. Bingo !!! You are right – Log4j… Read More »Log4j
The following blog is a simple insight into a very helpful and widely used framework for logging purpose. Bingo !!! You are right – Log4j… Read More »Log4j
Hi Friends !!! Recently I came across a requirement where in I was supposed to sort a Custom Class based on multiple parameters. Problem Statement… Read More »Dynamic Sorting Utility
The most common question you ever come round with in Java is : “Why is String class called Immutable ?” ( No Offence Intended !!!… Read More »Immutability
package com.test.dev; public class LongestSubSequencePalindrome { /** * @param args */ public static void main(String[] args) { String str = “tatestseatat”; // Any test String… Read More »Longest Subsequence palindrome java implementation