【问题标题】:Empty string when reading data sent from server读取从服务器发送的数据时为空字符串
【发布时间】:2017-05-10 13:43:42
【问题描述】:

我在处理这段代码时遇到了问题。变量 result 应该从服务器的响应中填充,但是由于某种原因,它一直返回一个空字符串。

这是完整的代码:

public class FragmentRally extends Fragment {

public FragmentRally() {
    // Required empty public constructor
}

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
                         Bundle savedInstanceState) {
    View rootView = inflater.inflate(R.layout.fragment_fragment_rally, container, false);


    new AsyncFetch().execute();


    return rootView;
}


// CONNECTION_TIMEOUT and READ_TIMEOUT are in milliseconds
public static final int CONNECTION_TIMEOUT = 10000;
public static final int READ_TIMEOUT = 15000;
private RecyclerView vistaRallye;
private AdapterRallye adaptadorRallye;

private class AsyncFetch extends AsyncTask<String, String, String> {
    ProgressDialog pdLoading = new ProgressDialog(getActivity());
    HttpURLConnection conn;
    URL url = null;

    @Override
    protected void onPreExecute() {
        super.onPreExecute();

        //this method will be running on UI thread
        pdLoading.setMessage("\tCarregant...");
        pdLoading.setCancelable(false);
        pdLoading.show();

    }

    @Override
    protected String doInBackground(String... params) {
        try {

            // Enter URL address where your json file resides
            // Even you can make call to php file which returns json data
            url = new URL("http://www.rallyecat.esy.es/Obtenir_events.php");

        } catch (MalformedURLException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
            return e.toString();
        }
        try {

            // Setup HttpURLConnection class to send and receive data from php and mysql
            conn = (HttpURLConnection) url.openConnection();
            conn.setReadTimeout(READ_TIMEOUT);
            conn.setConnectTimeout(CONNECTION_TIMEOUT);
            conn.setRequestMethod("GET");

            // setDoOutput to true as we recieve data from json file
            conn.setDoOutput(true);

        } catch (IOException e1) {
            // TODO Auto-generated catch block
            e1.printStackTrace();
            return e1.toString();
        }

        try {

            int response_code = conn.getResponseCode();

            // Check if successful connection made
            if (response_code == HttpURLConnection.HTTP_OK) {

                // Read data sent from server
                InputStream input = conn.getInputStream();
                BufferedReader reader = new BufferedReader(new InputStreamReader(input));
                StringBuilder result = new StringBuilder();
                String line;

                while ((line = reader.readLine()) != null) {
                    result.append(line);
                }

                // Pass data to onPostExecute method
                return (result.toString());

            } else {

                return ("No hi ha connexió a internet.");
            }

        } catch (IOException e) {
            e.printStackTrace();
            return e.toString();
        } finally {
            conn.disconnect();
        }


    }

    @Override
    protected void onPostExecute(String result) {

        //this method will be running on UI thread

        pdLoading.dismiss();
        List<DataRallye> data = new ArrayList<>();

        pdLoading.dismiss();
        try {
            JSONArray jArray = new JSONArray(result);

            // Extract data from json and store into ArrayList as class objects
            for (int i = 0; i < jArray.length(); i++) {
                JSONObject json_data = jArray.getJSONObject(i);
                DataRallye dadesrallye = new DataRallye();
                dadesrallye.RallyeNom = json_data.getString("nom");
                dadesrallye.RallyeTipus = json_data.getString("tipus");
                dadesrallye.RallyeDataI = json_data.getString("datai");
                dadesrallye.RallyeDataF = json_data.getString("dataf");
                dadesrallye.RallyeCiutat = json_data.getString("ciutat");
                dadesrallye.RallyeOrganitzacio = json_data.getString("organitzacio");
                dadesrallye.RallyeFoto = json_data.getString("foto");
                data.add(dadesrallye);
            }

            // Setup and Handover data to recyclerview
            vistaRallye = (RecyclerView) getView().findViewById(R.id.llistarallyes);
            adaptadorRallye = new AdapterRallye(getActivity(), data);
            vistaRallye.setAdapter(adaptadorRallye);
            vistaRallye.setLayoutManager(new LinearLayoutManager(getActivity()));

        } catch (JSONException e) {
            Toast.makeText(getActivity(), e.toString(), Toast.LENGTH_LONG).show();
        }

    }

}

}

问题出现在这里:

// Read data sent from server
                InputStream input = conn.getInputStream();
                BufferedReader reader = new BufferedReader(new InputStreamReader(input));
                StringBuilder result = new StringBuilder();
                String line;

                while ((line = reader.readLine()) != null) {
                    result.append(line);
                }

                // Pass data to onPostExecute method
                return (result.toString());

这个变量,RESULT 在这里传递,我在这里进行 JSON Parse。但是由于是空的,所以直接进入catch异常:

@Override
    protected void onPostExecute(String result) {

        //this method will be running on UI thread

        pdLoading.dismiss();
        List<DataRallye> data = new ArrayList<>();

        pdLoading.dismiss();
        try {
            JSONArray jArray = new JSONArray(result);

            // Extract data from json and store into ArrayList as class objects
            for (int i = 0; i < jArray.length(); i++) {
                JSONObject json_data = jArray.getJSONObject(i);
                DataRallye dadesrallye = new DataRallye();
                dadesrallye.RallyeNom = json_data.getString("nom");
                dadesrallye.RallyeTipus = json_data.getString("tipus");
                dadesrallye.RallyeDataI = json_data.getString("datai");
                dadesrallye.RallyeDataF = json_data.getString("dataf");
                dadesrallye.RallyeCiutat = json_data.getString("ciutat");
                dadesrallye.RallyeOrganitzacio = json_data.getString("organitzacio");
                dadesrallye.RallyeFoto = json_data.getString("foto");
                data.add(dadesrallye);
            }

            // Setup and Handover data to recyclerview
            vistaRallye = (RecyclerView) getView().findViewById(R.id.llistarallyes);
            adaptadorRallye = new AdapterRallye(getActivity(), data);
            vistaRallye.setAdapter(adaptadorRallye);
            vistaRallye.setLayoutManager(new LinearLayoutManager(getActivity()));

        } catch (JSONException e) {
            Toast.makeText(getActivity(), e.toString(), Toast.LENGTH_LONG).show();
        }

这是从我们网站上的 PHP 文件生成的 JSON:

[{"id_rally":"1","nom":"45e rallye costa brava","tipus":"velocitat i regularitat","datai":"2017-06-20","dataf":"2017-06-22","ciutat":"Girona","organitzacio":"rallyclassics ","foto":"brava.png"},{"id_rally":"2","nom":"26e rallye igualada","tipus":"velocitat","datai":"2017-08-13","dataf":"2017-08-16","ciutat":"Igualada","organitzacio":"ecb org","foto":"igualada.png"}]

【问题讨论】:

  • conn.setDoOutput(true);。删除该行。
  • result.append(line); 那应该是result.append(line) + "\n";
  • @greenapps 解决了我的问题!十分感谢!这条线是做什么的?谢谢!
  • return ("No hi ha connexió a internet."); 错误。您的结果代码与 OK 不同。说出代码。

标签: java php android json


【解决方案1】:
conn.setDoOutput(true);. 

删除该行。因为您不会将数据写入输出流。

result.append(line); 

应该是这样的

result.append(line) + "\n"; 

【讨论】:

    【解决方案2】:

    对于 'GET' 连接集

     conn.setDoOutput(false);
    

    setDoOutput(true) 用于 POST 和 PUT 请求。

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 2019-05-10
      • 1970-01-01
      • 1970-01-01
      • 2016-02-10
      • 1970-01-01
      • 2015-10-20
      • 2021-12-04
      • 1970-01-01
      相关资源
      最近更新 更多