Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .idea/Java-Assignment-003.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

25 changes: 22 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,13 +56,32 @@ 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**?

* Private

* Is it a **Class method** or an **object Instance method**, how do you know?

* It is an Object Instance method, not to sure really

* What is its **return data-type**?

* It is an Object

* Does it require any **arguments** to call it, and if so, how many **parameters** and of what **data-type**?

* It requires one parameter,I think.

* Scan line by line through the code and try to determine how it works?
* What is familiar to you?
* I am familiar with the scanner, strings, println, main line, and creating an object, but that's sort of it
* What is not familiar to you?

* The catch which I could assume what it does, the try and also the for.

* Do the **for** loops make sense, and if so, tell me what you think they do?
* They don't make sense to me.

Also in the first instructions you tell us to add the metadata-extractor, but it is already here in this document, I went ahead and added it again just to show I know how to do it in case that was what you were looking for.

## PART 4 - Turn in

Expand Down
Binary file added images/Screenshot 2023-09-12 114447.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 8 additions & 0 deletions src/HiddenSecrets.java
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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 fpstr = s.nextLine();
// convert that string into A Path type using Paths class,
Path path = Paths.get(fpstr);
// and call the getHiddenSecrets method to get the file's meta-data
getHiddenSecrets(path.toFile());
// HERE
}
}