Multithreading in Java allows executing multiple threads simultaneously by using lightweight subprocesses called threads that can perform tasks in parallel. Threads share the same memory area, making context switching faster than multiprocessing. This allows tasks to be performed together, improving performance over single-threaded processes. Common uses of multithreading include games, animations, and achieving responsiveness in applications.