Suggestion required in my threads scenario?

I have multiple threads in my program, with each thread need to execute again multiple tasks i.e Need fetches the data multiple times. For every fetch we are planning to create new thread. Is it recommended way or is it creates any issue? If you know any better ideas please suggest.

[290 byte] By [rajanalaja] at [2007-11-27 10:46:47]
# 1

There's a ThreadPoolExecutor class in java.util.concurrent (I believe) that you can use for that sort of stuff.

-Kayaman-a at 2007-7-28 20:20:54 > top of Java-index,Java Essentials,Java Programming...
# 2

We already using thirdparty ThreadPoolExtractor. My doubt here is can we use thread with in multple thread? What may be the possibility issues here?

rajanalaja at 2007-7-28 20:20:54 > top of Java-index,Java Essentials,Java Programming...