logo

Mètode Java Timer schedule().

El mètode de planificació (tasca TimerTask, Date time) de la classe Timer s'utilitza per programar la tasca per executar-se en el moment donat. Si el temps donat és del passat, la tasca es programa en aquest moviment per a l'execució.

Sintaxi

 public void schedule(TimerTask task, Date time) 

Paràmetre

tasca - és la tasca a programar.

temps - és el moment en què s'ha d'executar la tasca.

Llançaments

IllegalArgumentException - Llança l'excepció quan time.getTime() és negatiu.

IllegalStateException - Llança l'excepció quan la tasca es programa o es cancel·la, o quan es cancel·la el temporitzador o quan s'acaba el fil del temporitzador.

NullPointerException - Llança l'excepció quan la tasca o el temps és nul.

Exemple 1

 import java.util.*; public class JavaTimerScheduleExample1 { public static void main(String[] args) { // creating timer task, timer Timer t = new Timer(); TimerTask tt = new TimerTask() { @Override public void run() { System.out.println('Task is on'); }; }; t.schedule(tt, new Date()); } } 
Prova-ho ara

Sortida:

 Task is on 

Exemple 2

 import java.util.*; public class JavaTimerScheduleExample2{ public static void main(String[] args) { // creating timer task, timer Timer t = new Timer(); TimerTask tt = new TimerTask() { @Override public void run() { for(int i=1; i<=10;i++) { system.out.println('working on'); } }; t.schedule(tt, new date()); < pre> <span> Test it Now </span> <p> <strong>Output:</strong> </p> <pre> working on working on working on working on working on working on working on working on working on working on </pre> <p>The schedule (TimerTask task, Date firstTime, long period) is the method of Timer class. It is used to schedule the given task again and again in given fixed time execution.</p> <h2>Syntax</h2> <pre> public void schedule(TimerTask task, Date firstTime, long period) </pre> <h2>Parameter</h2> <p> <strong>task -</strong> It is the task that is scheduled.</p> <p> <strong>firstTime -</strong> It is the First time in which given task is executed.</p> <p> <strong>period -</strong> It is the time in milliseconds execution.</p> <h2>Throws</h2> <p> <strong>IllegalArgumentException -</strong> It throws the exception when firstTime.getTime() is less than 0, or period is greater than or equal to 0</p> <p> <strong>IllegalStateException -</strong> It throws the exception when the task is already scheduled or canceled, or when the timer is canceled, or when timer thread is terminated.</p> <p> <strong>NullPointerException -</strong> It throws the exception when task or time is null.</p> <h3>Example 3</h3> <pre> import java.util.*; public class JavaTimerScheduleExample3 { public static void main(String[] args) { // creating timer task, timer Timer t = new Timer(); TimerTask tt = new TimerTask() { @Override public void run() { System.out.println(&apos;working on&apos;); }; }; t.schedule(tt, new Date(),1000); ; } } </pre> <span> Test it Now </span> <p> <strong>Output:</strong> </p> <pre> working on working on working on working on . . . . . </pre> <h3>Example 4</h3> <pre> import java.util.*; public class JavaTimerScheduleExample4{ public static void main(String[] args) { // creating timer task, timer Timer t = new Timer(); TimerTask tt = new TimerTask() { @Override public void run() { for(int i=1; i<=10;i++) { system.out.println('working on'); } }; t.schedule(tt, new date(),1000); < pre> <span> Test it Now </span> <p> <strong>Output:</strong> </p> <pre> working on working on working on working on . . . . . </pre> <br></=10;i++)></pre></=10;i++)>

La programació (tasca TimerTask, Data firstTime, període llarg) és el mètode de la classe Timer. S'utilitza per programar una i altra vegada la tasca donada en un temps d'execució fixat.

Sintaxi

 public void schedule(TimerTask task, Date firstTime, long period) 

Paràmetre

tasca - És la tasca que està programada.

primera vegada - És la primera vegada que s'executa una tasca determinada.

període - És el temps d'execució en mil·lisegons.

un milió en xifres

Llançaments

IllegalArgumentException - Llança l'excepció quan firstTime.getTime() és inferior a 0 o el punt és superior o igual a 0

IllegalStateException - Llança l'excepció quan la tasca ja està programada o cancel·lada, o quan es cancel·la el temporitzador o quan s'acaba el fil del temporitzador.

NullPointerException - Llança l'excepció quan la tasca o el temps és nul.

Exemple 3

 import java.util.*; public class JavaTimerScheduleExample3 { public static void main(String[] args) { // creating timer task, timer Timer t = new Timer(); TimerTask tt = new TimerTask() { @Override public void run() { System.out.println(&apos;working on&apos;); }; }; t.schedule(tt, new Date(),1000); ; } } 
Prova-ho ara

Sortida:

 working on working on working on working on . . . . . 

Exemple 4

 import java.util.*; public class JavaTimerScheduleExample4{ public static void main(String[] args) { // creating timer task, timer Timer t = new Timer(); TimerTask tt = new TimerTask() { @Override public void run() { for(int i=1; i<=10;i++) { system.out.println(\'working on\'); } }; t.schedule(tt, new date(),1000); < pre> <span> Test it Now </span> <p> <strong>Output:</strong> </p> <pre> working on working on working on working on . . . . . </pre> <br></=10;i++)>