You can, and the syntax I know is
this(< argument list >);
You can also call a super class’ constructor through
super(< argument list >);
Both such calls can only be done as the first statement in the constructor (so you can only call one other constructor, and before anything else is done).