Uses of Class
java.util.Scanner
| Package | Description |
|---|---|
| java.util | |
| org.apache.http.client.utils |
Helpers and utility classes for HttpClient.
|
-
Uses of Scanner in java.util
Methods in java.util that return Scanner Modifier and Type Method Description ScannerScanner. reset()Resets this scanner's delimiter, locale, and radix.ScannerScanner. skip(String pattern)Tries to use the specified string to construct a pattern and then uses the constructed pattern to match input starting from the current position.ScannerScanner. skip(Pattern pattern)Tries to use specified pattern to match input starting from the current position.ScannerScanner. useDelimiter(String pattern)Sets the delimiting pattern of thisScannerwith a pattern compiled from the supplied string value.ScannerScanner. useDelimiter(Pattern pattern)Sets the delimiting pattern of thisScanner.ScannerScanner. useLocale(Locale l)Sets theLocaleof thisScannerto a specifiedLocale.ScannerScanner. useRadix(int radix)Sets the radix of thisScannerto the specified radix. -
Uses of Scanner in org.apache.http.client.utils
Methods in org.apache.http.client.utils with parameters of type Scanner Modifier and Type Method Description static voidURLEncodedUtils. parse(List<NameValuePair> parameters, Scanner scanner, String encoding)Adds all parameters within the Scanner to the list ofparameters, as encoded byencoding.