É possível verificar o progresso do URLconnection.getInputStream ()?

Quero verificar o andamento do download do arquivo por URLconnection. É possível ou devo usar outra biblioteca? Esta é a minha função de conexão de URL:

public static String sendPostRequest(String httpURL, String data) throws UnsupportedEncodingException, MalformedURLException, IOException {
    URL url = new URL(httpURL);

    URLConnection conn = url.openConnection();
    //conn.addRequestProperty("Content-Type", "text/html; charset=iso-8859-2");
    conn.setDoOutput(true);
    OutputStreamWriter wr = new OutputStreamWriter(conn.getOutputStream());
    wr.write(data);
    wr.flush();

    BufferedReader rd = new BufferedReader(new InputStreamReader(conn.getInputStream(), "ISO-8859-2"));
    String line, all = "";
    while ((line = rd.readLine()) != null) {
        all = all + line;
    }
    wr.close();
    rd.close();
    return all;
}

Entendo que todo o arquivo é baixado nesta linha (ou usado) ?:

BufferedReader rd = new BufferedReader(new InputStreamReader(conn.getInputStream(), "ISO-8859-2"));

Então, é possível fazer isso neste código?

questionAnswers(3)

yourAnswerToTheQuestion