fork download
  1. import java.net.URL;
  2. import java.net.MalformedURLException;
  3.  
  4. class Test {
  5. public static void main(String[] args) throws MalformedURLException {
  6. URL root = new URL("http://localhost/dir/");
  7. URL combined = new URL(root, "/path");
  8. System.out.println("Combined is: " + combined.toString());
  9. }
  10. }
  11.  
Success #stdin #stdout 0.1s 320512KB
stdin
Standard input is empty
stdout
Combined is: http://localhost/path