I am working with threads. However when I try to start a thread, I get a Exception. In concrete java.lang.IllegalThreadStateException. My code is:
public voi
If the thread has already been started, you need to use run() instead of start().
run()
start()