fork download
  1. /* package whatever; // don't place package name! */
  2.  
  3. import java.util.*;
  4. import java.lang.*;
  5. import java.io.*;
  6. import java.net.URL;
  7.  
  8. /* Name of the class has to be "Main" only if the class is public. */
  9. class Ideone
  10. {
  11. public static void main (String[] args) throws java.lang.Exception
  12. {
  13. // your code goes here
  14. URL server = new URL("https://r...content-available-to-author-only...e.com/1/");
  15. String path = "/path";
  16. System.out.println(new URL(server, path).toString());
  17.  
  18. server = new URL("https://r...content-available-to-author-only...e.com/1/");
  19. path = "path";
  20. System.out.println(new URL(server, path).toString());
  21.  
  22. server = new URL("https://r...content-available-to-author-only...e.com/1");
  23. path = "/path";
  24. System.out.println(new URL(server, path).toString());
  25.  
  26. server = new URL("https://r...content-available-to-author-only...e.com/1");
  27. path = "path";
  28. System.out.println(new URL(server, path).toString());
  29. }
  30. }
Success #stdin #stdout 0.1s 320512KB
stdin
Standard input is empty
stdout
https://r...content-available-to-author-only...e.com/path
https://r...content-available-to-author-only...e.com/1/path
https://r...content-available-to-author-only...e.com/path
https://r...content-available-to-author-only...e.com/path