public final class OSTools
extends java.lang.Object
Constructor and Description |
---|
OSTools() |
Modifier and Type | Method and Description |
---|---|
static java.lang.String |
getJVMPid()
Retrieves the Process ID (PID) of the current Java Virtual Machine (JVM) instance.
|
static java.lang.String |
getOSName() |
static boolean |
invokeDesktopAction(java.lang.String action,
java.lang.Object arg)
Invokes an action on the system's Desktop (if supported) using reflection.
|
static boolean |
isLinux()
Checks if the operating system is Linux.
|
static boolean |
isMac()
Checks if the operating system is Mac OS.
|
static boolean |
isOtherOS()
Checks if the operating system is neither Windows, Linux, nor Mac OS.
|
static boolean |
isWindows()
Checks if the operating system is Windows.
|
static void |
sleep(int amount)
Deprecated.
please use
sleepSeconds(int) instead, as it is confusing that the parameter
is interpreted as seconds whereas in Thread#sleep it's millis |
static void |
sleep(int amount,
boolean restoreInterruptedState)
Deprecated.
please use
sleepSeconds(int, boolean) instead, as it is confusing that the parameter
is interpreted as seconds whereas in Thread#sleep it's millis |
static void |
sleep(long amount,
java.util.concurrent.TimeUnit unit)
Pauses the current thread for a specified duration in a given time unit
and restores the interrupted state if the thread is interrupted.
|
static void |
sleep(long amount,
java.util.concurrent.TimeUnit unit,
boolean restoreInterruptedState)
Pauses the current thread for a specified duration in a given time unit.
|
static void |
sleepmillis(long milliseconds)
Deprecated.
please use
sleepMilliseconds(long) instead, which is consistent with the camel cased other sleep methods |
static void |
sleepmillis(long milliseconds,
boolean restoreInterruptedState)
Deprecated.
please use
sleepMilliseconds(long, boolean) instead, which is consistent with the camel cased other sleep methods |
static void |
sleepMilliseconds(long milliseconds)
Pauses the current thread for a specified number of milliseconds
and restores the interrupted state if the thread is interrupted.
|
static void |
sleepMilliseconds(long milliseconds,
boolean restoreInterruptedState)
Pauses the current thread for a specified number of milliseconds.
|
static void |
sleepRandom(int minMillisecs,
int maxMillisecs)
Deprecated.
please use
sleepRandomMillis(int, int) instead, which reflects what unit the passed parameters should have |
static void |
sleepRandom(int minMillisecs,
int maxMillisecs,
boolean restoreInterruptedState)
Deprecated.
please use
sleepRandomMillis(int, int, boolean) instead, which reflects what unit the passed parameters should have |
static void |
sleepRandomMillis(int minMillisecs,
int maxMillisecs)
Pauses the current thread for a random duration between specified minimum and maximum values
and restores the interrupted state if the thread is interrupted.
|
static void |
sleepRandomMillis(int minMillisecs,
int maxMillisecs,
boolean restoreInterruptedState)
Pauses the current thread for a random duration between specified minimum and maximum values.
|
static void |
sleepRandomUpToMillis(int maxMillisecs)
Pauses the current thread for a random duration, up to the specified maximum milliseconds
and restores the interrupted state if the thread is interrupted.
|
static void |
sleepRandomUpToMillis(int maxMillisecs,
boolean restoreInterruptedState)
Pauses the current thread for a random duration, up to the specified maximum milliseconds.
|
static void |
sleepSeconds(int seconds)
Pauses the current thread for a specified number of seconds
and restores the interrupted state if the thread is interrupted.
|
static void |
sleepSeconds(int seconds,
boolean restoreInterruptedState)
Pauses the current thread for a specified number of seconds.
|
public static java.lang.String getJVMPid()
public static java.lang.String getOSName()
public static boolean isWindows()
true
if the OS is Windows, false
otherwise.public static boolean isLinux()
true
if the OS is Linux, false
otherwise.public static boolean isMac()
true
if the OS is Mac OS, false
otherwise.public static boolean isOtherOS()
true
if the OS is another type, false
otherwise.public static boolean invokeDesktopAction(java.lang.String action, java.lang.Object arg)
action
- The name of the desktop action to invoke (e.g., "browse").arg
- The argument required by the action (e.g., a URI for "browse").true
if the action is successfully invoked, false
otherwise.public static void sleepSeconds(int seconds)
seconds
- The number of seconds to pause.public static void sleepSeconds(int seconds, boolean restoreInterruptedState)
seconds
- The number of seconds to pause.restoreInterruptedState
- Whether to restore the interrupted state if the thread is interrupted.public static void sleepMilliseconds(long milliseconds)
milliseconds
- The number of milliseconds to pause.public static void sleepMilliseconds(long milliseconds, boolean restoreInterruptedState)
milliseconds
- The number of milliseconds to pause.restoreInterruptedState
- Whether to restore the interrupted state if the thread is interrupted.public static void sleep(long amount, java.util.concurrent.TimeUnit unit)
amount
- The amount of time to pause.unit
- The time unit for the duration (e.g., SECONDS, MILLISECONDS).public static void sleep(long amount, java.util.concurrent.TimeUnit unit, boolean restoreInterruptedState)
amount
- The amount of time to pause.unit
- The time unit for the duration (e.g., SECONDS, MILLISECONDS).restoreInterruptedState
- Whether to restore the interrupted state if the thread is interrupted.public static void sleepRandomMillis(int minMillisecs, int maxMillisecs)
minMillisecs
- The minimum duration in milliseconds.maxMillisecs
- The maximum duration in milliseconds.java.lang.IllegalArgumentException
- if the minimum value is negative or greater than the maximum value.public static void sleepRandomMillis(int minMillisecs, int maxMillisecs, boolean restoreInterruptedState)
minMillisecs
- The minimum duration in milliseconds.maxMillisecs
- The maximum duration in milliseconds.restoreInterruptedState
- Whether to restore the interrupted state if the thread is interrupted.java.lang.IllegalArgumentException
- if the minimum value is negative or greater than the maximum value.public static void sleepRandomUpToMillis(int maxMillisecs)
maxMillisecs
- The maximum duration in milliseconds.java.lang.IllegalArgumentException
- if the minimum value is negative or greater than the maximum value.public static void sleepRandomUpToMillis(int maxMillisecs, boolean restoreInterruptedState)
maxMillisecs
- The maximum duration in milliseconds.restoreInterruptedState
- Whether to restore the interrupted state if the thread is interrupted.java.lang.IllegalArgumentException
- if the minimum value is negative or greater than the maximum value.@Deprecated public static void sleep(int amount)
sleepSeconds(int)
instead, as it is confusing that the parameter
is interpreted as seconds whereas in Thread#sleep it's millisamount
- The amount of time to pause in seconds.@Deprecated public static void sleep(int amount, boolean restoreInterruptedState)
sleepSeconds(int, boolean)
instead, as it is confusing that the parameter
is interpreted as seconds whereas in Thread#sleep it's millisamount
- The amount of time to pause in seconds.restoreInterruptedState
- Whether to restore the interrupted state if the thread is interrupted.@Deprecated public static void sleepRandom(int minMillisecs, int maxMillisecs)
sleepRandomMillis(int, int)
instead, which reflects what unit the passed parameters should haveminMillisecs
- The minimum duration in milliseconds.maxMillisecs
- The maximum duration in milliseconds.java.lang.IllegalArgumentException
- if the minimum value is negative or greater than the maximum value.@Deprecated public static void sleepRandom(int minMillisecs, int maxMillisecs, boolean restoreInterruptedState)
sleepRandomMillis(int, int, boolean)
instead, which reflects what unit the passed parameters should haveminMillisecs
- The minimum duration in milliseconds.maxMillisecs
- The maximum duration in milliseconds.restoreInterruptedState
- Whether to restore the interrupted state if the thread is interrupted.java.lang.IllegalArgumentException
- if the minimum value is negative or greater than the maximum value.@Deprecated public static void sleepmillis(long milliseconds)
sleepMilliseconds(long)
instead, which is consistent with the camel cased other sleep methodsmilliseconds
- The number of milliseconds to pause.@Deprecated public static void sleepmillis(long milliseconds, boolean restoreInterruptedState)
sleepMilliseconds(long, boolean)
instead, which is consistent with the camel cased other sleep methodsmilliseconds
- The number of milliseconds to pause.restoreInterruptedState
- Whether to restore the interrupted state if the thread is interrupted.Copyright © 2000-2025 OAshi S.à r.l. All Rights Reserved.