Class ParsingUtils

java.lang.Object
org.apache.commons.compress.utils.ParsingUtils

public final class ParsingUtils extends Object
Utility methods for parsing data and converting it to other formats.
Since:
1.26.0
  • Method Details

    • parseIntValue

      public static int parseIntValue(String value) throws IOException
      Parses the provided string value to an Integer, assuming a base-10 radix
      Parameters:
      value - string value to parse
      Returns:
      parsed value as an int
      Throws:
      IOException - when the value cannot be parsed
    • parseIntValue

      public static int parseIntValue(String value, int radix) throws IOException
      Parse the provided string value to an Integer with a provided radix
      Parameters:
      value - string value to parse
      radix - radix value to use for parsing
      Returns:
      parsed value as an int
      Throws:
      IOException - when the value cannot be parsed
    • parseLongValue

      public static long parseLongValue(String value) throws IOException
      Parses the provided string value to a Long, assuming a base-10 radix
      Parameters:
      value - string value to parse
      Returns:
      parsed value as a long
      Throws:
      IOException - when the value cannot be parsed
    • parseLongValue

      public static long parseLongValue(String value, int radix) throws IOException
      Parses the provided string value to a Long with a provided radix
      Parameters:
      value - string value to parse
      radix - radix value to use for parsing
      Returns:
      parsed value as a long
      Throws:
      IOException - when the value cannot be parsed