mirror of
https://github.com/danbulant/introductionToProgramming
synced 2026-05-19 20:38:36 +00:00
801 lines
29 KiB
Java
801 lines
29 KiB
Java
package common;
|
|
/******************************************************************************
|
|
* Compilation: javac In.java
|
|
* Execution: java In (basic test --- see source for required files)
|
|
* Dependencies: none
|
|
*
|
|
* Reads in data of various types from standard input, files, and URLs.
|
|
*
|
|
******************************************************************************/
|
|
|
|
import java.io.BufferedInputStream;
|
|
import java.io.File;
|
|
import java.io.FileInputStream;
|
|
import java.io.IOException;
|
|
import java.io.InputStream;
|
|
|
|
import java.net.URI;
|
|
import java.net.URISyntaxException;
|
|
import java.net.Socket;
|
|
import java.net.URL;
|
|
import java.net.URLConnection;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.InputMismatchException;
|
|
import java.util.Locale;
|
|
import java.util.NoSuchElementException;
|
|
import java.util.Scanner;
|
|
import java.util.regex.Pattern;
|
|
|
|
/**
|
|
* The <code>In</code> data type provides methods for reading strings
|
|
* and numbers from standard input, file input, URLs, and sockets.
|
|
* <p>
|
|
* The Locale used is: language = English, country = US. This is consistent
|
|
* with the formatting conventions with Java floating-point literals,
|
|
* command-line arguments (via {@link Double#parseDouble(String)})
|
|
* and standard output.
|
|
* <p>
|
|
* For additional documentation, see
|
|
* <a href="https://introcs.cs.princeton.edu/31datatype">Section 3.1</a> of
|
|
* <i>Computer Science: An Interdisciplinary Approach</i>
|
|
* by Robert Sedgewick and Kevin Wayne.
|
|
* <p>
|
|
* Like {@link Scanner}, reading a token also consumes preceding Java
|
|
* whitespace, reading a full line consumes
|
|
* the following end-of-line delimiter, while reading a character consumes
|
|
* nothing extra.
|
|
* <p>
|
|
* Whitespace is defined in {@link Character#isWhitespace(char)}. Newlines
|
|
* consist of \n, \r, \r\n, and Unicode hex code points 0x2028, 0x2029, 0x0085;
|
|
* see <a href="http://www.docjar.com/html/api/java/util/Scanner.java.html">
|
|
* Scanner.java</a> (NB: Java 6u23 and earlier uses only \r, \r, \r\n).
|
|
*
|
|
* @author David Pritchard
|
|
* @author Robert Sedgewick
|
|
* @author Kevin Wayne
|
|
*/
|
|
public final class In {
|
|
|
|
///// begin: section (1 of 2) of code duplicated from In to StdIn.
|
|
|
|
// assume Unicode UTF-8 encoding
|
|
private static final String CHARSET_NAME = "UTF-8";
|
|
|
|
// assume language = English, country = US for consistency with System.out.
|
|
private static final Locale LOCALE = Locale.US;
|
|
|
|
// the default token separator; we maintain the invariant that this value
|
|
// is held by the scanner's delimiter between calls
|
|
private static final Pattern WHITESPACE_PATTERN = Pattern.compile("\\p{javaWhitespace}+");
|
|
|
|
// makes whitespace characters significant
|
|
private static final Pattern EMPTY_PATTERN = Pattern.compile("");
|
|
|
|
// used to read the entire input. source:
|
|
// http://weblogs.java.net/blog/pat/archive/2004/10/stupid_scanner_1.html
|
|
private static final Pattern EVERYTHING_PATTERN = Pattern.compile("\\A");
|
|
|
|
//// end: section (1 of 2) of code duplicated from In to StdIn.
|
|
|
|
private Scanner scanner;
|
|
|
|
/**
|
|
* Initializes an input stream from standard input.
|
|
*/
|
|
public In() {
|
|
scanner = new Scanner(new BufferedInputStream(System.in), CHARSET_NAME);
|
|
scanner.useLocale(LOCALE);
|
|
}
|
|
|
|
/**
|
|
* Initializes an input stream from a socket.
|
|
*
|
|
* @param socket the socket
|
|
* @throws IllegalArgumentException if cannot open {@code socket}
|
|
* @throws IllegalArgumentException if {@code socket} is {@code null}
|
|
*/
|
|
public In(Socket socket) {
|
|
if (socket == null) throw new IllegalArgumentException("socket argument is null");
|
|
try {
|
|
InputStream is = socket.getInputStream();
|
|
scanner = new Scanner(new BufferedInputStream(is), CHARSET_NAME);
|
|
scanner.useLocale(LOCALE);
|
|
}
|
|
catch (IOException ioe) {
|
|
throw new IllegalArgumentException("could not open socket: " + socket, ioe);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Initializes an input stream from a URL.
|
|
*
|
|
* @param url the URL
|
|
* @throws IllegalArgumentException if cannot open {@code url}
|
|
* @throws IllegalArgumentException if {@code url} is {@code null}
|
|
*/
|
|
public In(URL url) {
|
|
if (url == null) throw new IllegalArgumentException("url argument is null");
|
|
try {
|
|
URLConnection site = url.openConnection();
|
|
InputStream is = site.getInputStream();
|
|
scanner = new Scanner(new BufferedInputStream(is), CHARSET_NAME);
|
|
scanner.useLocale(LOCALE);
|
|
}
|
|
catch (IOException ioe) {
|
|
throw new IllegalArgumentException("could not read URL: '" + url + "'", ioe);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Initializes an input stream from a file.
|
|
*
|
|
* @param file the file
|
|
* @throws IllegalArgumentException if cannot open {@code file}
|
|
* @throws IllegalArgumentException if {@code file} is {@code null}
|
|
*/
|
|
public In(File file) {
|
|
if (file == null) throw new IllegalArgumentException("file argument is null");
|
|
try {
|
|
// for consistency with StdIn, wrap with BufferedInputStream instead of use
|
|
// file as argument to Scanner
|
|
FileInputStream fis = new FileInputStream(file);
|
|
scanner = new Scanner(new BufferedInputStream(fis), CHARSET_NAME);
|
|
scanner.useLocale(LOCALE);
|
|
}
|
|
catch (IOException ioe) {;
|
|
throw new IllegalArgumentException("could not read file: " + file, ioe);
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
* Initializes an input stream from a filename or web page name.
|
|
*
|
|
* @param name the filename or web page name
|
|
* @throws IllegalArgumentException if cannot open {@code name} as
|
|
* a file or URL
|
|
* @throws IllegalArgumentException if {@code name} is {@code null}
|
|
*/
|
|
public In(String name) {
|
|
if (name == null) throw new IllegalArgumentException("argument is null");
|
|
if (name.length() == 0) throw new IllegalArgumentException("argument is the empty string");
|
|
try {
|
|
// first try to read file from local file system
|
|
File file = new File(name);
|
|
if (file.exists()) {
|
|
// for consistency with StdIn, wrap with BufferedInputStream instead of use
|
|
// file as argument to Scanner
|
|
FileInputStream fis = new FileInputStream(file);
|
|
scanner = new Scanner(new BufferedInputStream(fis), CHARSET_NAME);
|
|
scanner.useLocale(LOCALE);
|
|
return;
|
|
}
|
|
|
|
// resource relative to .class file
|
|
URL url = getClass().getResource(name);
|
|
|
|
// resource relative to classloader root
|
|
if (url == null) {
|
|
url = getClass().getClassLoader().getResource(name);
|
|
}
|
|
|
|
// or URL from web
|
|
if (url == null) {
|
|
URI uri = new URI(name);
|
|
if (uri.isAbsolute()) url = uri.toURL();
|
|
else throw new IllegalArgumentException("could not read: '" + name + "'");
|
|
url = new URL(name);
|
|
}
|
|
|
|
URLConnection site = url.openConnection();
|
|
|
|
// in order to set User-Agent, replace above line with these two
|
|
// HttpURLConnection site = (HttpURLConnection) url.openConnection();
|
|
// site.addRequestProperty("User-Agent", "Mozilla/4.76");
|
|
|
|
InputStream is = site.getInputStream();
|
|
scanner = new Scanner(new BufferedInputStream(is), CHARSET_NAME);
|
|
scanner.useLocale(LOCALE);
|
|
}
|
|
catch (IOException | URISyntaxException e) {
|
|
throw new IllegalArgumentException("could not read: '" + name + "'");
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Initializes an input stream from a given {@link Scanner} source; use with
|
|
* {@code new Scanner(String)} to read from a string.
|
|
* <p>
|
|
* Note that this does not create a defensive copy, so the
|
|
* scanner will be mutated as you read on.
|
|
*
|
|
* @param scanner the scanner
|
|
* @throws IllegalArgumentException if {@code scanner} is {@code null}
|
|
*/
|
|
public In(Scanner scanner) {
|
|
if (scanner == null) throw new IllegalArgumentException("scanner argument is null");
|
|
this.scanner = scanner;
|
|
}
|
|
|
|
/**
|
|
* Returns true if this input stream exists.
|
|
*
|
|
* @return {@code true} if this input stream exists; {@code false} otherwise
|
|
*/
|
|
public boolean exists() {
|
|
return scanner != null;
|
|
}
|
|
|
|
//// begin: section (2 of 2) of code duplicated from In to StdIn,
|
|
//// with all methods changed from "public" to "public static".
|
|
|
|
/**
|
|
* Returns true if input stream is empty (except possibly whitespace).
|
|
* Use this to know whether the next call to {@link #readString()},
|
|
* {@link #readDouble()}, etc. will succeed.
|
|
*
|
|
* @return {@code true} if this input stream is empty (except possibly whitespace);
|
|
* {@code false} otherwise
|
|
*/
|
|
public boolean isEmpty() {
|
|
return !scanner.hasNext();
|
|
}
|
|
|
|
/**
|
|
* Returns true if this input stream has a next line.
|
|
* Use this method to know whether the
|
|
* next call to {@link #readLine()} will succeed.
|
|
* This method is functionally equivalent to {@link #hasNextChar()}.
|
|
*
|
|
* @return {@code true} if this input stream has more input (including whitespace);
|
|
* {@code false} otherwise
|
|
*/
|
|
public boolean hasNextLine() {
|
|
return scanner.hasNextLine();
|
|
}
|
|
|
|
/**
|
|
* Returns true if this input stream has more input (including whitespace).
|
|
* Use this method to know whether the next call to {@link #readChar()} will succeed.
|
|
* This method is functionally equivalent to {@link #hasNextLine()}.
|
|
*
|
|
* @return {@code true} if this input stream has more input (including whitespace);
|
|
* {@code false} otherwise
|
|
*/
|
|
public boolean hasNextChar() {
|
|
scanner.useDelimiter(EMPTY_PATTERN);
|
|
boolean result = scanner.hasNext();
|
|
scanner.useDelimiter(WHITESPACE_PATTERN);
|
|
return result;
|
|
}
|
|
|
|
|
|
/**
|
|
* Reads and returns the next line in this input stream.
|
|
*
|
|
* @return the next line in this input stream; {@code null} if no such line
|
|
*/
|
|
public String readLine() {
|
|
String line;
|
|
try {
|
|
line = scanner.nextLine();
|
|
}
|
|
catch (NoSuchElementException e) {
|
|
line = null;
|
|
}
|
|
return line;
|
|
}
|
|
|
|
/**
|
|
* Reads and returns the next character in this input stream.
|
|
*
|
|
* @return the next {@code char} in this input stream
|
|
* @throws NoSuchElementException if the input stream is empty
|
|
*/
|
|
public char readChar() {
|
|
scanner.useDelimiter(EMPTY_PATTERN);
|
|
try {
|
|
String ch = scanner.next();
|
|
assert ch.length() == 1 : "Internal (Std)In.readChar() error!"
|
|
+ " Please contact the authors.";
|
|
scanner.useDelimiter(WHITESPACE_PATTERN);
|
|
return ch.charAt(0);
|
|
}
|
|
catch (NoSuchElementException e) {
|
|
throw new NoSuchElementException("attempts to read a 'char' value from the input stream, "
|
|
+ "but no more tokens are available");
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
* Reads and returns the remainder of this input stream, as a string.
|
|
*
|
|
* @return the remainder of this input stream, as a string
|
|
*/
|
|
public String readAll() {
|
|
if (!scanner.hasNextLine())
|
|
return "";
|
|
|
|
String result = scanner.useDelimiter(EVERYTHING_PATTERN).next();
|
|
// not that important to reset delimeter, since now scanner is empty
|
|
scanner.useDelimiter(WHITESPACE_PATTERN); // but let's do it anyway
|
|
return result;
|
|
}
|
|
|
|
|
|
/**
|
|
* Reads the next token from this input stream and returns it as a {@code String}.
|
|
*
|
|
* @return the next {@code String} in this input stream
|
|
* @throws NoSuchElementException if the input stream is empty
|
|
*/
|
|
public String readString() {
|
|
try {
|
|
return scanner.next();
|
|
}
|
|
catch (NoSuchElementException e) {
|
|
throw new NoSuchElementException("attempts to read a 'String' value from the input stream, "
|
|
+ "but no more tokens are available");
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Reads the next token from this input stream, parses it as a {@code int},
|
|
* and returns the {@code int}.
|
|
*
|
|
* @return the next {@code int} in this input stream
|
|
* @throws NoSuchElementException if the input stream is empty
|
|
* @throws InputMismatchException if the next token cannot be parsed as an {@code int}
|
|
*/
|
|
public int readInt() {
|
|
try {
|
|
return scanner.nextInt();
|
|
}
|
|
catch (InputMismatchException e) {
|
|
String token = scanner.next();
|
|
throw new InputMismatchException("attempts to read an 'int' value from the input stream, "
|
|
+ "but the next token is \"" + token + "\"");
|
|
}
|
|
catch (NoSuchElementException e) {
|
|
throw new NoSuchElementException("attemps to read an 'int' value from the input stream, "
|
|
+ "but no more tokens are available");
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Reads the next token from this input stream, parses it as a {@code double},
|
|
* and returns the {@code double}.
|
|
*
|
|
* @return the next {@code double} in this input stream
|
|
* @throws NoSuchElementException if the input stream is empty
|
|
* @throws InputMismatchException if the next token cannot be parsed as a {@code double}
|
|
*/
|
|
public double readDouble() {
|
|
try {
|
|
return scanner.nextDouble();
|
|
}
|
|
catch (InputMismatchException e) {
|
|
String token = scanner.next();
|
|
throw new InputMismatchException("attempts to read a 'double' value from the input stream, "
|
|
+ "but the next token is \"" + token + "\"");
|
|
}
|
|
catch (NoSuchElementException e) {
|
|
throw new NoSuchElementException("attemps to read a 'double' value from the input stream, "
|
|
+ "but no more tokens are available");
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Reads the next token from this input stream, parses it as a {@code float},
|
|
* and returns the {@code float}.
|
|
*
|
|
* @return the next {@code float} in this input stream
|
|
* @throws NoSuchElementException if the input stream is empty
|
|
* @throws InputMismatchException if the next token cannot be parsed as a {@code float}
|
|
*/
|
|
public float readFloat() {
|
|
try {
|
|
return scanner.nextFloat();
|
|
}
|
|
catch (InputMismatchException e) {
|
|
String token = scanner.next();
|
|
throw new InputMismatchException("attempts to read a 'float' value from the input stream, "
|
|
+ "but the next token is \"" + token + "\"");
|
|
}
|
|
catch (NoSuchElementException e) {
|
|
throw new NoSuchElementException("attemps to read a 'float' value from the input stream, "
|
|
+ "but no more tokens are available");
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Reads the next token from this input stream, parses it as a {@code long},
|
|
* and returns the {@code long}.
|
|
*
|
|
* @return the next {@code long} in this input stream
|
|
* @throws NoSuchElementException if the input stream is empty
|
|
* @throws InputMismatchException if the next token cannot be parsed as a {@code long}
|
|
*/
|
|
public long readLong() {
|
|
try {
|
|
return scanner.nextLong();
|
|
}
|
|
catch (InputMismatchException e) {
|
|
String token = scanner.next();
|
|
throw new InputMismatchException("attempts to read a 'long' value from the input stream, "
|
|
+ "but the next token is \"" + token + "\"");
|
|
}
|
|
catch (NoSuchElementException e) {
|
|
throw new NoSuchElementException("attemps to read a 'long' value from the input stream, "
|
|
+ "but no more tokens are available");
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Reads the next token from this input stream, parses it as a {@code short},
|
|
* and returns the {@code short}.
|
|
*
|
|
* @return the next {@code short} in this input stream
|
|
* @throws NoSuchElementException if the input stream is empty
|
|
* @throws InputMismatchException if the next token cannot be parsed as a {@code short}
|
|
*/
|
|
public short readShort() {
|
|
try {
|
|
return scanner.nextShort();
|
|
}
|
|
catch (InputMismatchException e) {
|
|
String token = scanner.next();
|
|
throw new InputMismatchException("attempts to read a 'short' value from the input stream, "
|
|
+ "but the next token is \"" + token + "\"");
|
|
}
|
|
catch (NoSuchElementException e) {
|
|
throw new NoSuchElementException("attemps to read a 'short' value from the input stream, "
|
|
+ "but no more tokens are available");
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Reads the next token from this input stream, parses it as a {@code byte},
|
|
* and returns the {@code byte}.
|
|
* <p>
|
|
* To read binary data, use {@link BinaryIn}.
|
|
*
|
|
* @return the next {@code byte} in this input stream
|
|
* @throws NoSuchElementException if the input stream is empty
|
|
* @throws InputMismatchException if the next token cannot be parsed as a {@code byte}
|
|
*/
|
|
public byte readByte() {
|
|
try {
|
|
return scanner.nextByte();
|
|
}
|
|
catch (InputMismatchException e) {
|
|
String token = scanner.next();
|
|
throw new InputMismatchException("attempts to read a 'byte' value from the input stream, "
|
|
+ "but the next token is \"" + token + "\"");
|
|
}
|
|
catch (NoSuchElementException e) {
|
|
throw new NoSuchElementException("attemps to read a 'byte' value from the input stream, "
|
|
+ "but no more tokens are available");
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Reads the next token from this input stream, parses it as a {@code boolean}
|
|
* (interpreting either {@code "true"} or {@code "1"} as {@code true},
|
|
* and either {@code "false"} or {@code "0"} as {@code false}).
|
|
*
|
|
* @return the next {@code boolean} in this input stream
|
|
* @throws NoSuchElementException if the input stream is empty
|
|
* @throws InputMismatchException if the next token cannot be parsed as a {@code boolean}
|
|
*/
|
|
public boolean readBoolean() {
|
|
try {
|
|
String token = readString();
|
|
if ("true".equalsIgnoreCase(token)) return true;
|
|
if ("false".equalsIgnoreCase(token)) return false;
|
|
if ("1".equals(token)) return true;
|
|
if ("0".equals(token)) return false;
|
|
throw new InputMismatchException("attempts to read a 'boolean' value from the input stream, "
|
|
+ "but the next token is \"" + token + "\"");
|
|
}
|
|
catch (NoSuchElementException e) {
|
|
throw new NoSuchElementException("attempts to read a 'boolean' value from the input stream, "
|
|
+ "but no more tokens are available");
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Reads all remaining tokens from this input stream and returns them as
|
|
* an array of strings.
|
|
*
|
|
* @return all remaining tokens in this input stream, as an array of strings
|
|
*/
|
|
public String[] readAllStrings() {
|
|
// we could use readAll.trim().split(), but that's not consistent
|
|
// since trim() uses characters 0x00..0x20 as whitespace
|
|
String[] tokens = WHITESPACE_PATTERN.split(readAll());
|
|
if (tokens.length == 0 || tokens[0].length() > 0)
|
|
return tokens;
|
|
String[] decapitokens = new String[tokens.length-1];
|
|
for (int i = 0; i < tokens.length-1; i++)
|
|
decapitokens[i] = tokens[i+1];
|
|
return decapitokens;
|
|
}
|
|
|
|
/**
|
|
* Reads all remaining lines from this input stream and returns them as
|
|
* an array of strings.
|
|
*
|
|
* @return all remaining lines in this input stream, as an array of strings
|
|
*/
|
|
public String[] readAllLines() {
|
|
ArrayList<String> lines = new ArrayList<String>();
|
|
while (hasNextLine()) {
|
|
lines.add(readLine());
|
|
}
|
|
return lines.toArray(new String[0]);
|
|
}
|
|
|
|
|
|
/**
|
|
* Reads all remaining tokens from this input stream, parses them as integers,
|
|
* and returns them as an array of integers.
|
|
*
|
|
* @return all remaining lines in this input stream, as an array of integers
|
|
*/
|
|
public int[] readAllInts() {
|
|
String[] fields = readAllStrings();
|
|
int[] vals = new int[fields.length];
|
|
for (int i = 0; i < fields.length; i++)
|
|
vals[i] = Integer.parseInt(fields[i]);
|
|
return vals;
|
|
}
|
|
|
|
/**
|
|
* Reads all remaining tokens from this input stream, parses them as longs,
|
|
* and returns them as an array of longs.
|
|
*
|
|
* @return all remaining lines in this input stream, as an array of longs
|
|
*/
|
|
public long[] readAllLongs() {
|
|
String[] fields = readAllStrings();
|
|
long[] vals = new long[fields.length];
|
|
for (int i = 0; i < fields.length; i++)
|
|
vals[i] = Long.parseLong(fields[i]);
|
|
return vals;
|
|
}
|
|
|
|
/**
|
|
* Reads all remaining tokens from this input stream, parses them as doubles,
|
|
* and returns them as an array of doubles.
|
|
*
|
|
* @return all remaining lines in this input stream, as an array of doubles
|
|
*/
|
|
public double[] readAllDoubles() {
|
|
String[] fields = readAllStrings();
|
|
double[] vals = new double[fields.length];
|
|
for (int i = 0; i < fields.length; i++)
|
|
vals[i] = Double.parseDouble(fields[i]);
|
|
return vals;
|
|
}
|
|
|
|
///// end: section (2 of 2) of code duplicated from In to StdIn */
|
|
|
|
/**
|
|
* Closes this input stream.
|
|
*/
|
|
public void close() {
|
|
scanner.close();
|
|
}
|
|
|
|
/**
|
|
* Reads all integers from a file and returns them as
|
|
* an array of integers.
|
|
*
|
|
* @param filename the name of the file
|
|
* @return the integers in the file
|
|
* @deprecated Replaced by {@code new In(filename)}.{@link #readAllInts()}.
|
|
*/
|
|
@Deprecated
|
|
public static int[] readInts(String filename) {
|
|
return new In(filename).readAllInts();
|
|
}
|
|
|
|
/**
|
|
* Reads all doubles from a file and returns them as
|
|
* an array of doubles.
|
|
*
|
|
* @param filename the name of the file
|
|
* @return the doubles in the file
|
|
* @deprecated Replaced by {@code new In(filename)}.{@link #readAllDoubles()}.
|
|
*/
|
|
@Deprecated
|
|
public static double[] readDoubles(String filename) {
|
|
return new In(filename).readAllDoubles();
|
|
}
|
|
|
|
/**
|
|
* Reads all strings from a file and returns them as
|
|
* an array of strings.
|
|
*
|
|
* @param filename the name of the file
|
|
* @return the strings in the file
|
|
* @deprecated Replaced by {@code new In(filename)}.{@link #readAllStrings()}.
|
|
*/
|
|
@Deprecated
|
|
public static String[] readStrings(String filename) {
|
|
return new In(filename).readAllStrings();
|
|
}
|
|
|
|
/**
|
|
* Reads all integers from standard input and returns them
|
|
* an array of integers.
|
|
*
|
|
* @return the integers on standard input
|
|
* @deprecated Replaced by {@code new In()}.{@link #readAllInts()}.
|
|
*/
|
|
@Deprecated
|
|
public static int[] readInts() {
|
|
return new In().readAllInts();
|
|
}
|
|
|
|
/**
|
|
* Reads all doubles from standard input and returns them as
|
|
* an array of doubles.
|
|
*
|
|
* @return the doubles on standard input
|
|
* @deprecated Replaced by {@code new In()}.{@link #readAllDoubles()}.
|
|
*/
|
|
@Deprecated
|
|
public static double[] readDoubles() {
|
|
return new In().readAllDoubles();
|
|
}
|
|
|
|
/**
|
|
* Reads all strings from standard input and returns them as
|
|
* an array of strings.
|
|
*
|
|
* @return the strings on standard input
|
|
* @deprecated Replaced by {@code new In()}.{@link #readAllStrings()}.
|
|
*/
|
|
@Deprecated
|
|
public static String[] readStrings() {
|
|
return new In().readAllStrings();
|
|
}
|
|
|
|
/**
|
|
* Unit tests the {@code In} data type.
|
|
*
|
|
* @param args the command-line arguments
|
|
*/
|
|
public static void main(String[] args) {
|
|
In in;
|
|
String urlName = "https://introcs.cs.princeton.edu/java/stdlib/InTest.txt";
|
|
|
|
// read from a URL
|
|
System.out.println("readAll() from URL " + urlName);
|
|
System.out.println("---------------------------------------------------------------------------");
|
|
try {
|
|
in = new In(urlName);
|
|
System.out.println(in.readAll());
|
|
}
|
|
catch (IllegalArgumentException e) {
|
|
System.out.println(e);
|
|
}
|
|
System.out.println();
|
|
|
|
// read one line at a time from URL
|
|
System.out.println("readLine() from URL " + urlName);
|
|
System.out.println("---------------------------------------------------------------------------");
|
|
try {
|
|
in = new In(urlName);
|
|
while (!in.isEmpty()) {
|
|
String s = in.readLine();
|
|
System.out.println(s);
|
|
}
|
|
}
|
|
catch (IllegalArgumentException e) {
|
|
System.out.println(e);
|
|
}
|
|
System.out.println();
|
|
|
|
// read one string at a time from URL
|
|
System.out.println("readString() from URL " + urlName);
|
|
System.out.println("---------------------------------------------------------------------------");
|
|
try {
|
|
in = new In(urlName);
|
|
while (!in.isEmpty()) {
|
|
String s = in.readString();
|
|
System.out.println(s);
|
|
}
|
|
}
|
|
catch (IllegalArgumentException e) {
|
|
System.out.println(e);
|
|
}
|
|
System.out.println();
|
|
|
|
|
|
// read one line at a time from file in current directory
|
|
System.out.println("readLine() from current directory");
|
|
System.out.println("---------------------------------------------------------------------------");
|
|
try {
|
|
in = new In("./InTest.txt");
|
|
while (!in.isEmpty()) {
|
|
String s = in.readLine();
|
|
System.out.println(s);
|
|
}
|
|
}
|
|
catch (IllegalArgumentException e) {
|
|
System.out.println(e);
|
|
}
|
|
System.out.println();
|
|
|
|
|
|
// read one line at a time from file using relative path
|
|
System.out.println("readLine() from relative path");
|
|
System.out.println("---------------------------------------------------------------------------");
|
|
try {
|
|
in = new In("../stdlib/InTest.txt");
|
|
while (!in.isEmpty()) {
|
|
String s = in.readLine();
|
|
System.out.println(s);
|
|
}
|
|
}
|
|
catch (IllegalArgumentException e) {
|
|
System.out.println(e);
|
|
}
|
|
System.out.println();
|
|
|
|
// read one char at a time
|
|
System.out.println("readChar() from file");
|
|
System.out.println("---------------------------------------------------------------------------");
|
|
try {
|
|
in = new In("InTest.txt");
|
|
while (!in.isEmpty()) {
|
|
char c = in.readChar();
|
|
System.out.print(c);
|
|
}
|
|
}
|
|
catch (IllegalArgumentException e) {
|
|
System.out.println(e);
|
|
}
|
|
System.out.println();
|
|
System.out.println();
|
|
|
|
// read one line at a time from absolute OS X / Linux path
|
|
System.out.println("readLine() from absolute OS X / Linux path");
|
|
System.out.println("---------------------------------------------------------------------------");
|
|
try {
|
|
in = new In("/n/fs/introcs/www/java/stdlib/InTest.txt");
|
|
while (!in.isEmpty()) {
|
|
String s = in.readLine();
|
|
System.out.println(s);
|
|
}
|
|
}
|
|
catch (IllegalArgumentException e) {
|
|
System.out.println(e);
|
|
}
|
|
System.out.println();
|
|
|
|
|
|
// read one line at a time from absolute Windows path
|
|
System.out.println("readLine() from absolute Windows path");
|
|
System.out.println("---------------------------------------------------------------------------");
|
|
try {
|
|
in = new In("G:\\www\\introcs\\stdlib\\InTest.txt");
|
|
while (!in.isEmpty()) {
|
|
String s = in.readLine();
|
|
System.out.println(s);
|
|
}
|
|
System.out.println();
|
|
}
|
|
catch (IllegalArgumentException e) {
|
|
System.out.println(e);
|
|
}
|
|
System.out.println();
|
|
|
|
}
|
|
|
|
}
|