不太確定爲什麼我得到一個NullPointerException,Java新手,所以任何幫助將不勝感激!NullPointerException,簡單的錯誤?
public class MainActivity extends AppCompatActivity {
private TextView httpstuff;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
TextView httpstuff = (TextView)findViewById(R.id.tvHttp);
Button button = (Button) findViewById(R.id.button);
button.setOnClickListener(
new Button.OnClickListener(){
public void onClick(View v){
new JSONTask().onPostExecute("http://samples.openweathermap.org/data/2.5/weather?q=Chicago&appid=93eea9a9277a0520d2f444c3ff8c62da");
}
}
);
}
class JSONTask extends AsyncTask<String,String,String> {
@Override
protected String doInBackground(String... urls) {
HttpsURLConnection connection = null;
BufferedReader reader = null;
try {
URL url = new URL("https://samples.openweathermap.org/data/2.5/weather?q=Chicago&appid=93eea9a9277a0520d2f444c3ff8c62da");
connection = (HttpsURLConnection) url.openConnection();
connection.connect();
InputStream stream = connection.getInputStream();
reader = new BufferedReader(new InputStreamReader(stream));
StringBuffer buffer = new StringBuffer();
String line;
while ((line = reader.readLine()) != null) {
buffer.append(line);
}
return buffer.toString();
} catch(MalformedURLException e) {
e.printStackTrace();
} catch(IOException e) {
e.printStackTrace();
}
finally {
if(connection != null){
connection.disconnect();
}
try{
if(reader != null){
reader.close();
}
}catch(IOException e) {
e.printStackTrace();
}
}
return null;
}
@Override
protected void onPostExecute (String result){
super.onPostExecute(result);
httpstuff.setText(result);
}
}
}
Android Studio中記錄說,NullPointerException異常誤差在
httpstuff.setText(result);
發生而在
new JSONTask().onPostExecute("http://samples.openweathermap.org/data/2.5/weather?q=Chicago&appid=93eea9a9277a0520d2f444c3ff8c62da");
private TextView httpstuff is a designated as a field but says that it is not initialized, but I use it in class JSONTask? Any ideas on why the exception is occurring? Thanks alot in advance!
你'陰影httpstuff' –