Starting a thread is very easy in java, after you create it you need to call the method start(), for example:
1 2 |
Thread myThread = new Thread(new MyRunnable()); myThread.start(); |
where MyRunnable is a class implementing the Runnable interface overidden the method run().
Read More →