> Currently, method Thread.stop, Thread.destroy are
> deprecated.
> How can I stop/destroy a thread safely?
> Or a thread is needed to be stopped when it finish
> its job?
When a thread gets to the end of the run method. It stops. Safely. And you don't have to do anything else to it.