- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIn.java
More file actions
Latest commit
539 lines (470 loc) · 16.6 KB
/
Copy pathIn.java
File metadata and controls
539 lines (470 loc) · 16.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
/*************************************************************************
* Compilation: javac In.java
* Execution: java In (basic test --- see source for required files)
*
* Reads in data of various types from standard input, files, and URLs.
*
*************************************************************************/
importjava.io.BufferedInputStream;
importjava.io.File;
importjava.io.IOException;
importjava.io.InputStream;
importjava.net.URL;
importjava.net.HttpURLConnection;
importjava.net.URLConnection;
importjava.util.ArrayList;
importjava.util.InputMismatchException;
importjava.util.Locale;
importjava.util.Scanner;
importjava.util.regex.Pattern;
/**
* <i>Input</i>. This class 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="http://introcs.cs.princeton.edu/31datatype">Section 3.1</a> of
* <i>Introduction to Programming in Java: 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 delimeter, 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 <tt><a href="http://www.docjar.com/html/api/java/util/Scanner.java.html">
* Scanner.java</a></tt> (NB: Java 6u23 and earlier uses only \r, \r, \r\n).
*
* @author David Pritchard
* @author Robert Sedgewick
* @author Kevin Wayne
*/
publicfinalclassIn {
privateScannerscanner;
/*** begin: section (1 of 2) of code duplicated from In to StdIn */
// assume Unicode UTF-8 encoding
privatestaticfinalStringCHARSET_NAME = "UTF-8";
// assume language = English, country = US for consistency with System.out.
privatestaticfinalLocaleLOCALE = Locale.US;
// the default token separator; we maintain the invariant that this value
// is held by the scanner's delimiter between calls
privatestaticfinalPatternWHITESPACE_PATTERN
= Pattern.compile("\\p{javaWhitespace}+");
// makes whitespace characters significant
privatestaticfinalPatternEMPTY_PATTERN
= Pattern.compile("");
// used to read the entire input. source:
// http://weblogs.java.net/blog/pat/archive/2004/10/stupid_scanner_1.html
privatestaticfinalPatternEVERYTHING_PATTERN
= Pattern.compile("\\A");
/*** end: section (1 of 2) of code duplicated from In to StdIn */
/**
* Create an input stream from standard input.
*/
publicIn() {
scanner = newScanner(newBufferedInputStream(System.in), CHARSET_NAME);
scanner.useLocale(LOCALE);
}
/**
* Create an input stream from a socket.
*/
publicIn(java.net.Socketsocket) {
try {
InputStreamis = socket.getInputStream();
scanner = newScanner(newBufferedInputStream(is), CHARSET_NAME);
scanner.useLocale(LOCALE);
}
catch (IOExceptionioe) {
System.err.println("Could not open " + socket);
}
}
/**
* Create an input stream from a URL.
*/
publicIn(URLurl) {
try {
URLConnectionsite = url.openConnection();
InputStreamis = site.getInputStream();
scanner = newScanner(newBufferedInputStream(is), CHARSET_NAME);
scanner.useLocale(LOCALE);
}
catch (IOExceptionioe) {
System.err.println("Could not open " + url);
}
}
/**
* Create an input stream from a file.
*/
publicIn(Filefile) {
try {
scanner = newScanner(file, CHARSET_NAME);
scanner.useLocale(LOCALE);
}
catch (IOExceptionioe) {
System.err.println("Could not open " + file);
}
}
/**
* Create an input stream from a filename or web page name.
*/
publicIn(Strings) {
try {
// first try to read file from local file system
Filefile = newFile(s);
if (file.exists()) {
scanner = newScanner(file, CHARSET_NAME);
scanner.useLocale(LOCALE);
return;
}
// next try for files included in jar
URLurl = getClass().getResource(s);
// or URL from web
if (url == null) { url = newURL(s); }
URLConnectionsite = 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");
InputStreamis = site.getInputStream();
scanner = newScanner(newBufferedInputStream(is), CHARSET_NAME);
scanner.useLocale(LOCALE);
}
catch (IOExceptionioe) {
System.err.println("Could not open " + s);
}
}
/**
* Create an input stream from a given Scanner source; use with
* <tt>new Scanner(String)</tt> 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.
*/
publicIn(Scannerscanner) {
this.scanner = scanner;
}
/**
* Does the input stream exist?
*/
publicbooleanexists() {
returnscanner != null;
}
/*** begin: section (2 of 2) of code duplicated from In to StdIn,
* with all methods changed from "public" to "public static" ***/
/**
* Is the input empty (except possibly for whitespace)? Use this
* to know whether the next call to {@link #readString()},
* {@link #readDouble()}, etc will succeed.
*/
publicbooleanisEmpty() {
return !scanner.hasNext();
}
/**
* Does the input have a next line? Use this to know whether the
* next call to {@link #readLine()} will succeed. <p> Functionally
* equivalent to {@link #hasNextChar()}.
*/
publicbooleanhasNextLine() {
returnscanner.hasNextLine();
}
/**
* Is the input empty (including whitespace)? Use this to know
* whether the next call to {@link #readChar()} will succeed. <p> Functionally
* equivalent to {@link #hasNextLine()}.
*/
publicbooleanhasNextChar() {
scanner.useDelimiter(EMPTY_PATTERN);
booleanresult = scanner.hasNext();
scanner.useDelimiter(WHITESPACE_PATTERN);
returnresult;
}
/**
* Read and return the next line.
*/
publicStringreadLine() {
Stringline;
try { line = scanner.nextLine(); }
catch (Exceptione) { line = null; }
returnline;
}
/**
* Read and return the next character.
*/
publiccharreadChar() {
scanner.useDelimiter(EMPTY_PATTERN);
Stringch = scanner.next();
assert (ch.length() == 1) : "Internal (Std)In.readChar() error!"
+ " Please contact the authors.";
scanner.useDelimiter(WHITESPACE_PATTERN);
returnch.charAt(0);
}
/**
* Read and return the remainder of the input as a string.
*/
publicStringreadAll() {
if (!scanner.hasNextLine())
return"";
Stringresult = 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
returnresult;
}
/**
* Read and return the next string.
*/
publicStringreadString() {
returnscanner.next();
}
/**
* Read and return the next int.
*/
publicintreadInt() {
returnscanner.nextInt();
}
/**
* Read and return the next double.
*/
publicdoublereadDouble() {
returnscanner.nextDouble();
}
/**
* Read and return the next float.
*/
publicfloatreadFloat() {
returnscanner.nextFloat();
}
/**
* Read and return the next long.
*/
publiclongreadLong() {
returnscanner.nextLong();
}
/**
* Read and return the next short.
*/
publicshortreadShort() {
returnscanner.nextShort();
}
/**
* Read and return the next byte.
*/
publicbytereadByte() {
returnscanner.nextByte();
}
/**
* Read and return the next boolean, allowing case-insensitive
* "true" or "1" for true, and "false" or "0" for false.
*/
publicbooleanreadBoolean() {
Strings = readString();
if (s.equalsIgnoreCase("true")) returntrue;
if (s.equalsIgnoreCase("false")) returnfalse;
if (s.equals("1")) returntrue;
if (s.equals("0")) returnfalse;
thrownewInputMismatchException();
}
/**
* Read all strings until the end of input is reached, and return them.
*/
publicString[] 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)
returntokens;
String[] decapitokens = newString[tokens.length-1];
for (inti = 0; i < tokens.length-1; i++)
decapitokens[i] = tokens[i+1];
returndecapitokens;
}
/**
* Reads all remaining lines from input stream and returns them as an array of strings.
* @return all remaining lines on input stream, as an array of strings
*/
publicString[] readAllLines() {
ArrayList<String> lines = newArrayList<String>();
while (hasNextLine()) {
lines.add(readLine());
}
returnlines.toArray(newString[0]);
}
/**
* Read all ints until the end of input is reached, and return them.
*/
publicint[] readAllInts() {
String[] fields = readAllStrings();
int[] vals = newint[fields.length];
for (inti = 0; i < fields.length; i++)
vals[i] = Integer.parseInt(fields[i]);
returnvals;
}
/**
* Read all doubles until the end of input is reached, and return them.
*/
publicdouble[] readAllDoubles() {
String[] fields = readAllStrings();
double[] vals = newdouble[fields.length];
for (inti = 0; i < fields.length; i++)
vals[i] = Double.parseDouble(fields[i]);
returnvals;
}
/*** end: section (2 of 2) of code duplicated from In to StdIn */
/**
* Close the input stream.
*/
publicvoidclose() {
scanner.close();
}
/**
* Reads all ints from a file
* @deprecated Clearer to use
* <tt>new In(filename)</tt>.{@link #readAllInts()}
*/
publicstaticint[] readInts(Stringfilename) {
returnnewIn(filename).readAllInts();
}
/**
* Reads all doubles from a file
* @deprecated Clearer to use
* <tt>new In(filename)</tt>.{@link #readAllDoubles()}
*/
publicstaticdouble[] readDoubles(Stringfilename) {
returnnewIn(filename).readAllDoubles();
}
/**
* Reads all strings from a file
* @deprecated Clearer to use
* <tt>new In(filename)</tt>.{@link #readAllStrings()}
*/
publicstaticString[] readStrings(Stringfilename) {
returnnewIn(filename).readAllStrings();
}
/**
* Reads all ints from stdin
* @deprecated Clearer to use {@link StdIn#readAllInts()}
*/
publicstaticint[] readInts() {
returnnewIn().readAllInts();
}
/**
* Reads all doubles from stdin
* @deprecated Clearer to use {@link StdIn#readAllDoubles()}
*/
publicstaticdouble[] readDoubles() {
returnnewIn().readAllDoubles();
}
/**
* Reads all strings from stdin
* @deprecated Clearer to use {@link StdIn#readAllStrings()}
*/
publicstaticString[] readStrings() {
returnnewIn().readAllStrings();
}
/**
* Test client.
*/
publicstaticvoidmain(String[] args) {
Inin;
StringurlName = "http://introcs.cs.princeton.edu/stdlib/InTest.txt";
// read from a URL
System.out.println("readAll() from URL " + urlName);
System.out.println("---------------------------------------------------------------------------");
try {
in = newIn(urlName);
System.out.println(in.readAll());
}
catch (Exceptione) { 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 = newIn(urlName);
while (!in.isEmpty()) {
Strings = in.readLine();
System.out.println(s);
}
}
catch (Exceptione) { 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 = newIn(urlName);
while (!in.isEmpty()) {
Strings = in.readString();
System.out.println(s);
}
}
catch (Exceptione) { 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 = newIn("./InTest.txt");
while (!in.isEmpty()) {
Strings = in.readLine();
System.out.println(s);
}
}
catch (Exceptione) { 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 = newIn("../stdlib/InTest.txt");
while (!in.isEmpty()) {
Strings = in.readLine();
System.out.println(s);
}
}
catch (Exceptione) { System.out.println(e); }
System.out.println();
// read one char at a time
System.out.println("readChar() from file");
System.out.println("---------------------------------------------------------------------------");
try {
in = newIn("InTest.txt");
while (!in.isEmpty()) {
charc = in.readChar();
System.out.print(c);
}
}
catch (Exceptione) { 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("---------------------------------------------------------------------------");
in = newIn("/n/fs/introcs/www/java/stdlib/InTest.txt");
try {
while (!in.isEmpty()) {
Strings = in.readLine();
System.out.println(s);
}
}
catch (Exceptione) { 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 = newIn("G:\\www\\introcs\\stdlib\\InTest.txt");
while (!in.isEmpty()) {
Strings = in.readLine();
System.out.println(s);
}
System.out.println();
}
catch (Exceptione) { System.out.println(e); }
System.out.println();
}
}