The J48 decision tree classifier was used to classify instances in the zoo.test.arff dataset into animal types. It correctly classified 17 of 20 instances (85%). The decision tree examines attributes like feathers, milk, legs, fins to determine if an animal is a mammal, bird, reptile, fish, etc. New instances are classified by traversing the tree and seeing which leaf node they reach based on their attribute values.