This is my code for a basic URL shortener:
public class Shortener {
public static String GetShortedTinyURL(String toshort) throws IOException {
URL shorted = null;
shorted = new URL("http://tinyurl.com/api-create.php?url=" + toshort );
BufferedReader in = new BufferedReader(
new InputStreamReader(shorted.openStream()));
String inputLine;
while ((inputLine = in.readLine()) != null)
return inputLine;
in.close();
return inputLine;
}
Whenever I receive a 503 from the server, it dumps a stacktrace. Naturally, I don't want to do that. When surrounding the entire statement with try/catch, like in How to access variables which are inside try-catch? , the inputLine is not initialized. How do I get it to not log anything at all? (I'm actually planning on logging it to a text file, but I know how to do that.)
EDIT: fixed