Abstract classes permit providing a partial set of default implementations of methods in a class. Since they're incomplete, they can't be instantiated and used as they stand, but they can be subclassed to add the missing details in a way that's specific to that particular implementations, and those subclasses can be instantiated.
Without abstract classes, you would have to provide dummy implementations of the methods you intend to override ... which could be done, but then there'd be the risk of forgetting to implement one of them. Having some methods remain entirely abstract ensures that the real implementations have to fill in the gaps, or continue to be abstract themselves and force their descendents to do so.
It's not something the language couldn't live without. But it's Very Useful. You'll discover just how useful as you become more proficient in Java and OO design.
(Note that we said the same thing, basically, last time you brought up this question. So if you're still confused, you might want to be more specific about exactly what's confusing you.)