If you use frameworks like Spring, you can create a utility class with @Service
annotation.
This will ensure it's single instace (SIngleton), and an easy way to inject it itno any other class which'll have a need in its methods.
In any other case, I'd suggest to make it a singleton, using factory pattern, or in cotrast, using only static methods.