I want to call default constructor from a parameterized constructor inside a public java class.
Can I achieve it?
You can't call a default constructor once you've created a constructor that takes arguments. You'll have to create the no argument constructor yourself in order to make a call from the parameterized constructor.