Saturday, October 11, 2025
HomeLanguagesJavaDuration ofMillis(long) method in Java with Examples

Duration ofMillis(long) method in Java with Examples

The ofMillis(long) method of Duration Class in java.time package is used to get a duration in a 1 milliSecond format.

Syntax:

public static Duration ofMillis(long milliSeconds)

Parameters: This method accepts a parameter milliSeconds which is the number of milliSeconds. It can be positive or negative.

Return Value: This method returns a Duration representing the time in 1 milliSecond format.

Exception: This method throws ArithmeticException if the input milliSeconds exceeds the capacity of Duration.

Below examples illustrate the Duration.ofMillis() method:

Example 1:




// Java code to illustrate ofMillis() method
  
import java.time.Duration;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // input number of Millis
        long noOfMillis = 50000;
  
        // Duration using ofMillis() method
        Duration duration
            = Duration.ofMillis(noOfMillis);
  
        System.out.println(duration.getSeconds());
    }
}


Output:

50

Example 2:




// Java code to illustrate ofMillis() method
  
import java.time.Duration;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // input number of Millis
        long noOfMillis = -445000;
  
        // Duration using ofMillis() method
        Duration duration
            = Duration.ofMillis(noOfMillis);
  
        System.out.println(duration.getSeconds());
    }
}


Output:

-445

Reference: https://docs.oracle.com/javase/9/docs/api/java/time/Duration.html#ofMillis-long-

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32351 POSTS0 COMMENTS
Milvus
87 POSTS0 COMMENTS
Nango Kala
6720 POSTS0 COMMENTS
Nicole Veronica
11882 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11941 POSTS0 COMMENTS
Shaida Kate Naidoo
6839 POSTS0 COMMENTS
Ted Musemwa
7102 POSTS0 COMMENTS
Thapelo Manthata
6794 POSTS0 COMMENTS
Umr Jansen
6794 POSTS0 COMMENTS