O método de agendamento (tarefa TimerTask, data e hora) da classe Timer é usado para agendar a tarefa para execução em um determinado horário. Se o tempo informado estiver no passado, a tarefa é agendada naquele movimento para execução.
substituição de string javascript
Sintaxe
public void schedule(TimerTask task, Date time)
Parâmetro
tarefa - é a tarefa a ser agendada.
tempo - é o momento em que a tarefa deve ser executada.
Lança
Exceção de argumento ilegal - Lança a exceção quando time.getTime() é negativo.
IlegalStateException - Ele lança a exceção quando a tarefa é agendada ou cancelada, ou quando o cronômetro é cancelado, ou quando o thread do cronômetro é encerrado.
Null Pointer Exception - Ele lança a exceção quando a tarefa ou o tempo são nulos.
Exemplo 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()); } }Teste agora
Saída:
Task is on
Exemplo 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('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> <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++)>
O agendamento (tarefa TimerTask, Data firstTime, período longo) é o método da classe Timer. Ele é usado para agendar uma determinada tarefa repetidamente em um determinado tempo de execução.
Sintaxe
public void schedule(TimerTask task, Date firstTime, long period)
Parâmetro
tarefa - É a tarefa que está agendada.
primeira vez - É a primeira vez que determinada tarefa é executada.
período - É o tempo de execução em milissegundos.
Lança
Exceção de argumento ilegal - Lança a exceção quando firstTime.getTime() é menor que 0 ou o período é maior ou igual a 0
IlegalStateException - Ele lança a exceção quando a tarefa já está agendada ou cancelada, ou quando o cronômetro é cancelado, ou quando o thread do cronômetro é encerrado.
Null Pointer Exception - Ele lança a exceção quando a tarefa ou o tempo são nulos.
Exemplo 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('working on'); }; }; t.schedule(tt, new Date(),1000); ; } }Teste agora
Saída:
working on working on working on working on . . . . .
Exemplo 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++)>
=10;i++)>=10;i++)>