The only clean way of stopping a task is to interrupt it (or set some other flag) which causes the thread to gracefully stop. If you don't have an outer loop in your code you can check it at various key points where it is safe to interrupt the work flow. This can be tedious for a large code base, but it is the best approach.
If you have a library you have no control over you can use Thread.stop() however this can leave your application in an undefined state. It doesn't kill the thread as such but triggers a ThreadDeath error which will unwind the stack and call finally block etc. The problem is it will occur in an effectively random line of code (even half way through a line of code)
A thread can ignore the ThreadDeath error depending on how the code is written.
The only way around this is to run you untrusted code in another process, and then kill that process when it has taken too long. This could leave temporary files but is a much safer option.