This commit is contained in:
2023-03-30 13:50:25 -05:00
parent ce1015fdbe
commit 466e438eee
14 changed files with 299 additions and 6 deletions

View File

@@ -19,17 +19,12 @@ public class ReadFileFromWeb1 {
String URLString;
try {
URLinput = new Scanner(System.in).nextLine();
URLinput = "";
//URLinput = "";
if (URLinput.isEmpty()) {
URLString = "https://calebfontenot.com";
} else {
URLString = URLinput;
}
try {
} catch (Exception ex) {
System.out.println(ex);
URLString = "https://calebfontenot.com";
}
java.net.URL url = new java.net.URL(URLString);
int count = 0, divCount = 0, pCount = 0;