mirror of https://github.com/01-edu/public.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
582 B
17 lines
582 B
import java.util.Map; |
|
|
|
public class ExerciseRunner { |
|
public static void main(String[] args) { |
|
BreakdownURL parser = new BreakdownURL(); |
|
|
|
// Test case 1 |
|
String URL1 = "https://www.example.com:8080/path?name=value"; |
|
Map<String, String> components1 = parser.parseURL(URL1); |
|
System.out.println("Components of URL 1: " + components1); |
|
|
|
// Test case 2 |
|
String URL2 = "http://example.com/"; |
|
Map<String, String> components2 = parser.parseURL(URL2); |
|
System.out.println("Components of URL 2: " + components2); |
|
} |
|
} |