如何从网页获取值并在主类上使用它? Android应用

时间:2016-01-03 19:17:20

标签: java android httprequest

我试图在网页上阅读并将其存储在名为" finalresult"的var中。我阅读了文本,我使用了HttpURLConnection,我是在AsyncTask的doInBacgorund中完成的。

我会告诉你我的代码:

public class MainActivity extends AppCompatActivity {
public String finalresult = "";



@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
    setSupportActionBar(toolbar);

class MyRemote extends AsyncTask<Void, Void, String> {

        URL url;
        HttpURLConnection connection = null;

        @Override
        protected String doInBackground(Void... params) {
            try
            {
                //Create connection
                url = new URL("My url bla bla");
                connection = (HttpURLConnection) url.openConnection();
                connection.setRequestMethod("POST");
                connection.setRequestProperty("Content-Language", "en-US");

                connection.setUseCaches(false);
                connection.setDoInput(true);
                connection.setDoOutput(true);

                //Send request
                DataOutputStream wr = new DataOutputStream(connection.getOutputStream());
                wr.flush();
                wr.close();

                //Get Response
                InputStream is = connection.getInputStream();
                BufferedReader rd = new BufferedReader(new InputStreamReader(is));
                String line;
                StringBuffer response = new StringBuffer();
                while ((line = rd.readLine()) != null) {
                    response.append(line);
                    response.append('\r');
                }
                rd.close();

                finalresult = response.toString();



            } catch (Exception e) {
                e.printStackTrace();

            } finally
            {
                if (connection != null) {
                    connection.disconnect();
                }
            }
            return null;
        }

        @Override
        protected void onPostExecute(String result) {

            super.onPostExecute(result);

        }
    }

当我想使用&#34; finalresult&#34;主要活动类中的var我可以,因为它是空的。我如何才能获得主要活动类别?

TXH。 顺便说一句,我是初学者。

1 个答案:

答案 0 :(得分:0)

请查看Android AsyncTask的文档。此外,我不确定您是否遗漏了一个括号或其他内容,但请注意您的MyRemote类声明不能在onCreate()方法中。

您的finalResult变量为空的原因是您实际上从未使用过您实施的MyRemote类。

所以你需要

new MyRemote().execute();

在您的onCreate()方法中。另外,请记住,因为此请求是异步,所以在finalResult方法中使用onPostExecute()变量是有意义的。

此外,按照

的方式对URL进行硬编码并不是一个好主意
url = new URL("My url bla bla");

相反,它应该作为参数传递给execute()方法。再次,看看文档,它应该变得更加清晰。