com.sun.org.apache.xerces.internal.impl.dv.util.Base64.isWhiteSpace()方法的使用及代码示例

x33g5p2x  于2022-01-17 转载在 其他  
字(1.5k)|赞(0)|评价(0)|浏览(74)

本文整理了Java中com.sun.org.apache.xerces.internal.impl.dv.util.Base64.isWhiteSpace()方法的一些代码示例,展示了Base64.isWhiteSpace()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Base64.isWhiteSpace()方法的具体详情如下:
包路径:com.sun.org.apache.xerces.internal.impl.dv.util.Base64
类名称:Base64
方法名:isWhiteSpace

Base64.isWhiteSpace介绍

暂无

代码示例

代码示例来源:origin: com.sun.xml.parsers/jaxp-ri

/**
   * remove WhiteSpace from MIME containing encoded Base64 data.
   * 
   * @param data  the byte array of base64 data (with WS)
   * @return      the new length
   */
  protected static int removeWhiteSpace(char[] data) {
    if (data == null)
      return 0;

    // count characters that's not whitespace
    int newSize = 0;
    int len = data.length;
    for (int i = 0; i < len; i++) {
      if (!isWhiteSpace(data[i]))
        data[newSize++] = data[i];
    }
    return newSize;
  }
}

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.jaxp-ri

/**
   * remove WhiteSpace from MIME containing encoded Base64 data.
   * 
   * @param data  the byte array of base64 data (with WS)
   * @return      the new length
   */
  protected static int removeWhiteSpace(char[] data) {
    if (data == null)
      return 0;

    // count characters that's not whitespace
    int newSize = 0;
    int len = data.length;
    for (int i = 0; i < len; i++) {
      if (!isWhiteSpace(data[i]))
        data[newSize++] = data[i];
    }
    return newSize;
  }
}

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.jaxp-ri

protected static boolean isBase64(char octect) {
  return (isWhiteSpace(octect) || isPad(octect) || isData(octect));
}

代码示例来源:origin: com.sun.xml.parsers/jaxp-ri

protected static boolean isBase64(char octect) {
  return (isWhiteSpace(octect) || isPad(octect) || isData(octect));
}

相关文章

微信公众号

最新文章

更多