Can I use a variable in the following code?
String Var = "\"http://dl.dropbox.com/u/44966/xml%20roma.xml\"";
URL url1 = new URL(Var);
Is it only allowed to use a literal string, as in the following line?
URL url1 = new URL("http://dl.dropbox.com/u/44966/xml%20roma.xml");
In my application it is imperative that I use a variable.