Class ASCIIUtility

java.lang.Object
com.sun.xml.ws.util.ASCIIUtility

public class ASCIIUtility extends Object
Copied from mail.jar.
  • Method Details

    • parseInt

      public static int parseInt(byte[] b, int start, int end, int radix) throws NumberFormatException
      Convert the bytes within the specified range of the given byte array into a signed integer in the given radix . The range extends from start till, but not including end.

      Based on java.lang.Integer.parseInt()

      Throws:
      NumberFormatException
    • toString

      public static String toString(byte[] b, int start, int end)
      Convert the bytes within the specified range of the given byte array into a String. The range extends from start till, but not including end.

    • copyStream

      public static void copyStream(InputStream is, OutputStream out) throws IOException
      Throws:
      IOException