This commit is contained in:
2025-10-19 21:31:12 -05:00
parent 34651c7a53
commit f5d9120d15
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;