-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPrompt.java
More file actions
403 lines (326 loc) · 12 KB
/
Prompt.java
File metadata and controls
403 lines (326 loc) · 12 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
//Sparsh Pai
//Prompt Class
//Date Modified: 11/6/2018
//Holds static methods for use
import java.io.*;
import java.util.Scanner;
import java.awt.*;
import javax.swing.*;
public class Prompt
{
private static final Scanner in = new Scanner(System.in);
//
// Reads console input and checks if it is the correct type (int)
public static File getInputFile(String prompt)
{
while(true)
{
System.out.println(prompt);
String fileName= in.nextLine();
File inputFile= new File(fileName+".txt");
if(inputFile.exists())
{
return inputFile;
}
else
{
System.out.println("Error: "+fileName+" does not exist");
}
}
}
/**Opens a Scanner for inputting from a File selected from inputFile method
* @param prompt The prompting message for the user
* @return A Scanner object for reading a File selected by the user
*/
public static Scanner getInputScanner(String prompt)
{
//Open and return the Scanner for a File
try
{
return (new Scanner(newFile(prompt)));
}
catch (FileNotFoundException ex) //Should not be needed
{
System.out.println(ex.getMessage());
System.exit(1);
}
return null;
}
/**Opens a PrintWriter for output
* @param prompt The prompting message for the user
* @return A PrintWriter object for output
*/
public static PrintWriter getPrintWriter(String prompt)
{
//Open and return the Scanner for a File
try
{
System.out.print(prompt);
String name = in.nextLine().trim(); //The name of the file
return (new PrintWriter(new File(name)));
}
catch (FileNotFoundException ex) //Should not be needed
{
System.out.println(ex.getMessage());
System.exit(1);
}
return null;
}
// Reads console input and checks if it is the correct type (int)
// and validates the number is within the requested range - lowValue to highValue
public static int getInt(String prompt, int lowValue, int highValue)
{
//
// Loop until a valid entry is received
//
while(true)
{
//
// Get input
//
System.out.println(prompt + " Low Value: " + lowValue + " High Value: " + highValue );
//
// Check if it is an integer
//
if(Prompt.in.hasNextInt())
{
// Integer inputted, return result
int answer = Prompt.in.nextInt();
Prompt.in.nextLine();
// Check if the number is in required range
if (answer < lowValue || answer > highValue) {
//Out of Range Error
System.out.println(answer + " is out of Range. Expected Range: Low Value: " + lowValue + " High Value: " + highValue );
}
else {
//answer is OK
return answer;
}
}
else
{
// Invalid data type entered
String input = Prompt.in.nextLine();
System.out.println("Error:" + input + " is not an integer.");
}
}
}
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////
public static int getInt(String prompt)
{
int answer = 0;
while (true)
{
//
// Get input
//
System.out.println(prompt);
//
// Check if it is an integer
//
if(Prompt.in.hasNextInt())
{
// Integer inputted, return result
answer = Prompt.in.nextInt();
Prompt.in.nextLine();
if (checkRange(answer) == true)
{
break;
}
else
{
// Invalid data type entered
System.out.println ("Error:" + answer + " is not in range");
}
}
else
{
// Invalid data type entered
String input = Prompt.in.nextLine();
System.out.println("Error:" + input + " is not an integer.");
}
}
return answer;
}
public static double getDouble(String prompt, double lowValue, double highValue)
{
//
// Loop until a valid entry is received
//
while(true)
{
//
// Get input
//
System.out.println(prompt + " Input Range: " + lowValue + " High Value: " + highValue );
//
// Check if it is a double
//
if(Prompt.in.hasNextDouble())
{
// Double inputted, return result
double answer = Prompt.in.nextDouble();
Prompt.in.nextLine();
// Check if the number is in required range
if (answer < lowValue || answer > highValue) {
//Out of Range Error
System.out.println(answer + " is out of Range. Expected Range: Low Value: " + lowValue + " High Value: " + highValue );
}
else {
//answer is OK
return answer;
}
}
else
{
// Invalid data type entered
String input = Prompt.in.nextLine();
System.out.println("Error:" + input + " is not a float number.");
}
}
}
public static String getString(String prompt)
{
//
// Get input
//
System.out.println(prompt);
String answer = Prompt.in.nextLine();
//Prompt.in.nextLine();
return answer;
}
public static double getDouble(String prompt)
{
//
// Loop until a valid entry is received
//
while(true)
{
//
// Get input
//
System.out.println(prompt);
//
// Check if it is a double
//
if(Prompt.in.hasNextDouble())
{
// Double inputted, return result
double answer = Prompt.in.nextDouble();
Prompt.in.nextLine();
return answer;
}
else
{
// Invalid data type entered
String input = Prompt.in.nextLine();
System.out.println("Error:" + input + " is not a float number.");
}
}
}
//Runs a try catch statement to make sure the Scanner that has been initialized can be used
public static Scanner checkFile (File name)
{
while (true)
{
//Open and return the Scanner for a File
try
{
Scanner newFile = new Scanner (name);
return newFile;
}
catch (FileNotFoundException ex) //Should not be needed
{
System.out.println(ex.getMessage());
System.exit(1);
}
}
}
//Runs a try catch statement to make sure the PrintWriter that has been initialized can be used
public static PrintWriter checkOutput (String name)
{
while (true)
{
//Open and return the PrintWriter for a File
try
{
PrintWriter newFile = new PrintWriter (name);
return newFile;
}
catch (FileNotFoundException ex) //Should not be needed
{
System.out.println(ex.getMessage());
System.exit(1);
}
}
}
/** Opens a File
* @param prompt The prompting message for the user
* @return A File representing the readable file selected by the user
*/
public static File newFile(String prompt)
{
//Continue prompting for file input until file is found
while (true)
{
System.out.print(prompt);
String name = in.nextLine().trim(); //The name of the file
File f = new File(name); //The file
if (!f.exists()) //If file does not exist
{
System.out.println("Error: " + name + " does not exist.");
}
else if (f.isDirectory()) //If file is a directory instead of a file
{
System.out.println("Error: " + name + " is a directory.");
}
else if (!f.canRead()) //If file is not readable
{
System.out.println("Error: " + name + " is not readable.");
}
else //If file is found
{
return f;
}
}
} //end of newFile method
/**Opens a PrintWriter for output
* @param prompt The prompting message for the user
* @return A PrintWriter object for output
*/
public static PrintWriter outputFile(String prompt)
{
//Open and return the Scanner for a File
try
{
System.out.print(prompt);
String name = in.nextLine().trim(); //The name of the file
return (new PrintWriter(new File(name)));
}
catch (FileNotFoundException ex) //Should not be needed
{
System.out.println(ex.getMessage());
System.exit(1);
}
return null;
}
//Checks range for an integer that has been input
private static boolean checkRange (int prompt)
{
if (prompt <= 100 && prompt >=1)
{
return true;
}
else
{
return false;
}
}
public static void saveMessage(String message)
{
PrintWriter out = Prompt.getPrintWriter("Please enter the name of the file that you would like to save your coded message to.");
out.println(message);
out.close();
System.out.println("File Saved");
}
}