How do you kill a java.lang.Thread in Java?
java.lang.Thread
Generally you don't..
You ask it to interrupt whatever it is doing using Thread.interrupt() (javadoc link)
A good explanation of why is in the javadoc here (java technote link)