Its not possible directly. That means this feature is not provided by Java but it can be achieved with the help of Interface. By implementing more than one interface.
Java overcame the problem of multiple inheritance exist in C++.In C++ we can create a class by extending from more than one class. It is problematic. So in Java this feature is eliminated. Anyway for getting multiple inheritance Java introduced the concept of interfaces. So we can create a class by extending one class or we can implement any number of interfaces for it. But the restriction is we have to implement / describe every method existing in the interfaces. That's the rule. Ithink u know the concept of Interfaces!!!!!!!!!!!!!!!!!.right
In java multiple inheristance not supports but using keyword 'implements' its allow to inherits multiple inteface separated by comma --- jayant dhargawe