Here's my code:
public String getGPA() {
String gpa = null;
final String responseBody1;
new Thread(new Runnable(){
public void run()
{
try {
HttpGet httpGet_gpa = new HttpGet("https://somedomain.com" + getRegId() + "&format=P");
HttpResponse response = httpClient.execute(httpGet_gpa);
responseBody1 = EntityUtils.toString(response.getEntity());
} catch (ClientProtocolException cpe) {
// Ignore
} catch (IOException ioe) {
// Ignore
}
}
}).start();
Document gpa_doc = Jsoup.parse(responseBody1);
Element p = gpa_doc.select("p").first();
gpa = p.text().replace("Your overall GPA (Grade Point Average) to date is:", "");
return gpa;
}
I'm getting this error: cannot assign a value to final variable responseBody1
. What does this mean? I tried removing the final modifier but it tells me I need to make it final, but when I do i get that error. Any clues on why this is happening and how to fix it?
That's the problem related to anonymous classes. Since Java's black magic creates a copy of the environment in which the class is instantiated to pass variables to the inner class, you must declare them as
final
. ChangingresponseBody1
wouldn't change the original variable but a local reference to it (and sinceString
is immutable you won't obtain what you think).You should pass through a wrapper or a method of the outer class.