diff --git a/.idea/misc.xml b/.idea/misc.xml index cf9abe6..b95853c 100644 --- a/.idea/misc.xml +++ b/.idea/misc.xml @@ -1,4 +1,3 @@ - diff --git a/README.md b/README.md index 4d9f4d9..82de7b8 100644 --- a/README.md +++ b/README.md @@ -56,13 +56,24 @@ Your assignment is to use Built-In java classes to: * Look at the getHiddenSecrets method and identify the following parts by editing this README.md and providing your answers: * What is the **access modifer** (e.g. public, private, protected)? - * Is it a **Class method** or an **object Instance method**, how do you know? - * What is its **return data-type**? - * Does it require any **arguments** to call it, and if so, how many **parameters** and of what **data-type**? +- The access modifer was a public. + + * Is it a **Class method** or an **object Instance method**, how do you know? +- It is a class method becuase it was a class file. + + * What is its **return data-type**? +- There is no return data type the function is a void + + * Does it require any **arguments** to call it, and if so, how many **parameters** and of what **data-type**? +- It does require one argument which is called File and the data type is a file + * Scan line by line through the code and try to determine how it works? * What is familiar to you? +- The stuff that is familiar to me is the System.out.println(); function which just prints out the data for you but the rest I am not really understanding it * What is not familiar to you? +- How it is printing out all the data. * Do the **for** loops make sense, and if so, tell me what you think they do? +- I think that the for loops is grabbing the data from the directories ## PART 4 - Turn in diff --git a/images/Capture.PNG b/images/Capture.PNG new file mode 100644 index 0000000..700a4a3 Binary files /dev/null and b/images/Capture.PNG differ diff --git a/src/HiddenSecrets.java b/src/HiddenSecrets.java index 71067b3..26b311b 100644 --- a/src/HiddenSecrets.java +++ b/src/HiddenSecrets.java @@ -7,6 +7,9 @@ import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.IOException; +import java.nio.file.Path; +import java.nio.file.Paths; +import java.util.Scanner; // PUT YOUR IMPORTS HERE @@ -39,8 +42,13 @@ public static void getHiddenSecrets(File file) { public static void main(String[] args) { // Put your code to request a file path, // read in a string from System.in, + Scanner s = new Scanner(System.in); + System.out.println("Give me a file : "); + String stStr = s.nextLine(); // convert that string into A Path type using Paths class, + Path path = Paths.get(stStr); // and call the getHiddenSecrets method to get the file's meta-data + getHiddenSecrets(path.toFile()); // HERE } }