Class FileSize
- java.lang.Object
-
- org.apache.logging.log4j.core.appender.rolling.FileSize
-
public final class FileSize extends Object
FileSize utility class.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static long
parse(String string, long defaultValue)
Converts a string to a number of bytes.
-
-
-
Method Detail
-
parse
public static long parse(String string, long defaultValue)
Converts a string to a number of bytes. Strings consist of a floating point value followed by K, M, or G for kilobytes, megabytes, gigabytes, respectively. The abbreviations KB, MB, and GB are also accepted. Matching is case insensitive.- Parameters:
string
- The string to convertdefaultValue
- The default value if a problem is detected parsing.- Returns:
- The Bytes value for the string
-
-