10231024102510261027102810291030103110321033
if (cb.length() == 0) { _methodString = "GET"; return _methodString; } switch (cb.charAt(0)) { case 'G': _methodString = cb.equals(_getCb) ? "GET" : cb.toString(); break; case 'H':
793794795796797798799800801802803
if (len == 0) throw new NumberFormatException(value.toString()); int iValue = 0; int i = 0; int ch = value.charAt(i); int sign = 1; if (ch == '+') { if (i + 1 < len) ch = value.charAt(++i); else
797798799800801802803804805806807
int i = 0; int ch = value.charAt(i); int sign = 1; if (ch == '+') { if (i + 1 < len) ch = value.charAt(++i); else throw new NumberFormatException(value.toString()); } else if (ch == '-') { sign = -1; if (i + 1 < len)
803804805806807808809810811812813
else throw new NumberFormatException(value.toString()); } else if (ch == '-') { sign = -1; if (i + 1 < len) ch = value.charAt(++i); else throw new NumberFormatException(value.toString()); } for (; i < len && (ch = value.charAt(i)) >= '0' && ch <= '9'; i++)
808809810811812813814815816817818
ch = value.charAt(++i); else throw new NumberFormatException(value.toString()); } for (; i < len && (ch = value.charAt(i)) >= '0' && ch <= '9'; i++) iValue = 10 * iValue + ch - '0'; if (i < len) throw new NumberFormatException(value.toString());
895896897898899900901902903904905
int i = value.indexOf("charset"); if (i < 0) return null; int len = value.length(); for (i += 7; i < len && Character.isWhitespace(value.charAt(i)); i++) { } if (i >= len || value.charAt(i) != '=') return null;
898899900901902903904905906907908
int len = value.length(); for (i += 7; i < len && Character.isWhitespace(value.charAt(i)); i++) { } if (i >= len || value.charAt(i) != '=') return null; for (i++; i < len && Character.isWhitespace(value.charAt(i)); i++) { }
901902903904905906907908909910911
} if (i >= len || value.charAt(i) != '=') return null; for (i++; i < len && Character.isWhitespace(value.charAt(i)); i++) { } if (i >= len) return null;
907908909910911912913914915916917
} if (i >= len) return null; char end = value.charAt(i); if (end == '"') { int tail; for (tail = ++i; tail < len; tail++) { if (value.charAt(tail) == end) break;
911912913914915916917918919920921
char end = value.charAt(i); if (end == '"') { int tail; for (tail = ++i; tail < len; tail++) { if (value.charAt(tail) == end) break; } _readEncoding = Encoding.getMimeName(value.substring(i, tail));