org.apache.http.protocol.HTTP.isWhitespace()方法的使用及代码示例

x33g5p2x  于2022-01-20 转载在 其他  
字(6.5k)|赞(0)|评价(0)|浏览(162)

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

HTTP.isWhitespace介绍

暂无

代码示例

代码示例来源:origin: robovm/robovm

public String substringTrimmed(int beginIndex, int endIndex) {
  if (beginIndex < 0) {
    throw new IndexOutOfBoundsException();
  }
  if (endIndex > this.len) {
    throw new IndexOutOfBoundsException();
  }
  if (beginIndex > endIndex) {
    throw new IndexOutOfBoundsException();
  }
  while (beginIndex < endIndex && HTTP.isWhitespace(this.buffer[beginIndex])) {
    beginIndex++;
  }
  while (endIndex > beginIndex && HTTP.isWhitespace(this.buffer[endIndex - 1])) {
    endIndex--;
  }
  return new String(this.buffer, beginIndex, endIndex - beginIndex);
}

代码示例来源:origin: robovm/robovm

/**
 * Helper to skip whitespace.
 */
protected void skipWhitespace(final CharArrayBuffer buffer, final ParserCursor cursor) {
  int pos = cursor.getPos();
  int indexTo = cursor.getUpperBound();
  while ((pos < indexTo) &&
      HTTP.isWhitespace(buffer.charAt(pos))) {
    pos++;
  }
  cursor.updatePos(pos);
}

代码示例来源:origin: robovm/robovm

pos = 0;
while (pos < buffer.length() && HTTP.isWhitespace(buffer.charAt(pos))) {
  pos++;
while (pos < buffer.length() && !HTTP.isWhitespace(buffer.charAt(pos))) {
  pos++;

代码示例来源:origin: robovm/robovm

if (HTTP.isWhitespace(ch)) {
  pos++;
} else {

代码示例来源:origin: robovm/robovm

HTTP.isWhitespace(buffer.charAt(index))) {
index++;

代码示例来源:origin: robovm/robovm

pos = 0;
while (pos < buffer.length() && HTTP.isWhitespace(buffer.charAt(pos))) {
  pos++;
while (pos < buffer.length() && !HTTP.isWhitespace(buffer.charAt(pos))) {
  pos++;

代码示例来源:origin: robovm/robovm

while (i1 < i2 && (HTTP.isWhitespace(buffer.charAt(i1)))) {
  i1++;
while ((i2 > i1) && (HTTP.isWhitespace(buffer.charAt(i2 - 1)))) {
  i2--;

代码示例来源:origin: MobiVM/robovm

public String substringTrimmed(int beginIndex, int endIndex) {
  if (beginIndex < 0) {
    throw new IndexOutOfBoundsException();
  }
  if (endIndex > this.len) {
    throw new IndexOutOfBoundsException();
  }
  if (beginIndex > endIndex) {
    throw new IndexOutOfBoundsException();
  }
  while (beginIndex < endIndex && HTTP.isWhitespace(this.buffer[beginIndex])) {
    beginIndex++;
  }
  while (endIndex > beginIndex && HTTP.isWhitespace(this.buffer[endIndex - 1])) {
    endIndex--;
  }
  return new String(this.buffer, beginIndex, endIndex - beginIndex);
}

代码示例来源:origin: com.gluonhq/robovm-rt

public String substringTrimmed(int beginIndex, int endIndex) {
  if (beginIndex < 0) {
    throw new IndexOutOfBoundsException();
  }
  if (endIndex > this.len) {
    throw new IndexOutOfBoundsException();
  }
  if (beginIndex > endIndex) {
    throw new IndexOutOfBoundsException();
  }
  while (beginIndex < endIndex && HTTP.isWhitespace(this.buffer[beginIndex])) {
    beginIndex++;
  }
  while (endIndex > beginIndex && HTTP.isWhitespace(this.buffer[endIndex - 1])) {
    endIndex--;
  }
  return new String(this.buffer, beginIndex, endIndex - beginIndex);
}

代码示例来源:origin: com.mobidevelop.robovm/robovm-rt

public String substringTrimmed(int beginIndex, int endIndex) {
  if (beginIndex < 0) {
    throw new IndexOutOfBoundsException();
  }
  if (endIndex > this.len) {
    throw new IndexOutOfBoundsException();
  }
  if (beginIndex > endIndex) {
    throw new IndexOutOfBoundsException();
  }
  while (beginIndex < endIndex && HTTP.isWhitespace(this.buffer[beginIndex])) {
    beginIndex++;
  }
  while (endIndex > beginIndex && HTTP.isWhitespace(this.buffer[endIndex - 1])) {
    endIndex--;
  }
  return new String(this.buffer, beginIndex, endIndex - beginIndex);
}

代码示例来源:origin: MobiVM/robovm

/**
 * Helper to skip whitespace.
 */
protected void skipWhitespace(final CharArrayBuffer buffer, final ParserCursor cursor) {
  int pos = cursor.getPos();
  int indexTo = cursor.getUpperBound();
  while ((pos < indexTo) &&
      HTTP.isWhitespace(buffer.charAt(pos))) {
    pos++;
  }
  cursor.updatePos(pos);
}

代码示例来源:origin: com.bugvm/bugvm-rt

/**
 * Helper to skip whitespace.
 */
protected void skipWhitespace(final CharArrayBuffer buffer, final ParserCursor cursor) {
  int pos = cursor.getPos();
  final int indexTo = cursor.getUpperBound();
  while ((pos < indexTo) &&
      HTTP.isWhitespace(buffer.charAt(pos))) {
    pos++;
  }
  cursor.updatePos(pos);
}

代码示例来源:origin: ibinti/bugvm

/**
 * Helper to skip whitespace.
 */
protected void skipWhitespace(final CharArrayBuffer buffer, final ParserCursor cursor) {
  int pos = cursor.getPos();
  final int indexTo = cursor.getUpperBound();
  while ((pos < indexTo) &&
      HTTP.isWhitespace(buffer.charAt(pos))) {
    pos++;
  }
  cursor.updatePos(pos);
}

代码示例来源:origin: org.apache.httpcomponents/httpclient-android

/**
 * Helper to skip whitespace.
 */
protected void skipWhitespace(final CharArrayBuffer buffer, final ParserCursor cursor) {
  int pos = cursor.getPos();
  final int indexTo = cursor.getUpperBound();
  while ((pos < indexTo) &&
      HTTP.isWhitespace(buffer.charAt(pos))) {
    pos++;
  }
  cursor.updatePos(pos);
}

代码示例来源:origin: com.mobidevelop.robovm/robovm-rt

/**
 * Helper to skip whitespace.
 */
protected void skipWhitespace(final CharArrayBuffer buffer, final ParserCursor cursor) {
  int pos = cursor.getPos();
  int indexTo = cursor.getUpperBound();
  while ((pos < indexTo) &&
      HTTP.isWhitespace(buffer.charAt(pos))) {
    pos++;
  }
  cursor.updatePos(pos);
}

代码示例来源:origin: at.bestsolution.efxclipse.eclipse/org.apache.httpcomponents.httpcore

/**
 * Helper to skip whitespace.
 */
protected void skipWhitespace(final CharArrayBuffer buffer, final ParserCursor cursor) {
  int pos = cursor.getPos();
  final int indexTo = cursor.getUpperBound();
  while ((pos < indexTo) &&
      HTTP.isWhitespace(buffer.charAt(pos))) {
    pos++;
  }
  cursor.updatePos(pos);
}

代码示例来源:origin: Nextdoor/bender

/**
 * Helper to skip whitespace.
 */
protected void skipWhitespace(final CharArrayBuffer buffer, final ParserCursor cursor) {
  int pos = cursor.getPos();
  final int indexTo = cursor.getUpperBound();
  while ((pos < indexTo) &&
      HTTP.isWhitespace(buffer.charAt(pos))) {
    pos++;
  }
  cursor.updatePos(pos);
}

代码示例来源:origin: com.gluonhq/robovm-rt

/**
 * Helper to skip whitespace.
 */
protected void skipWhitespace(final CharArrayBuffer buffer, final ParserCursor cursor) {
  int pos = cursor.getPos();
  int indexTo = cursor.getUpperBound();
  while ((pos < indexTo) &&
      HTTP.isWhitespace(buffer.charAt(pos))) {
    pos++;
  }
  cursor.updatePos(pos);
}

代码示例来源:origin: com.impetus.fabric/fabric-jdbc-driver-shaded

/**
 * Helper to skip whitespace.
 */
protected void skipWhitespace(final CharArrayBuffer buffer, final ParserCursor cursor) {
  int pos = cursor.getPos();
  final int indexTo = cursor.getUpperBound();
  while ((pos < indexTo) &&
      HTTP.isWhitespace(buffer.charAt(pos))) {
    pos++;
  }
  cursor.updatePos(pos);
}

代码示例来源:origin: FlexoVM/flexovm

/**
 * Helper to skip whitespace.
 */
protected void skipWhitespace(final CharArrayBuffer buffer, final ParserCursor cursor) {
  int pos = cursor.getPos();
  int indexTo = cursor.getUpperBound();
  while ((pos < indexTo) &&
      HTTP.isWhitespace(buffer.charAt(pos))) {
    pos++;
  }
  cursor.updatePos(pos);
}

相关文章

HTTP类方法