What does util * mean in Java?

Java. util. * is a built-in package in Java which encapsulates a similar group of classes, sub-packages and interfaces . The * lets you import a class from existing packages and use it in the program as many times you need. You can find the list of all classes, interfaces, exceptions in the official document.

Read more