How to stop the execution of midlet of j2me for a specific amount of time ?
MIDlet's life cycle is completely controlled by AMS software resident on the phone. So, any facility that is related to execution of MIDlet must be requested from AMS software. For the particular situation you are describing is supported by Push Registry.
You could use registerAlarm by specifying the fully qualified class name of the MIDlet and time (in milli seconds) at which the application must be started again. Note that this is absolute time. The way it works is as follows:
Note: This is a protected API and it is possible that application MUST be signed in order to make use of it. Most of the phones would allow with a security prompt; however there are few that don't. It depends on the policy set by manufacturer and operator. So, catch security exceptions properly; otherwise you will be puzzled that app fails silently.
References: