android - arraymap 比稀疏数组更好地记住从 JSON 文件中捕获的一些数据?

标签 android arrays

我写了一段代码,它使用解析从 JSON 文件中捕获一些数据,但我不知道稀疏数组或数组映射之间哪种结构更好来内存这些数据?

我用过array map,不知道是不是浪费在这么少的data数据上。

public class MainActivity extends AppCompatActivity {

private ProgressDialog pd;
private String TAG = MainActivity.class.getSimpleName();
public ArrayMap<Integer, ValoriDiSueg> ArrayDati = new ArrayMap<>();



Button buttonProg;
TextView textViewProg;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    buttonProg = (Button) findViewById(R.id.button);
    textViewProg = (TextView) findViewById(R.id.textView);

    buttonProg.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            new JsonCLASS().execute("https://samples.openweathermap.org/data/2.5/weather?q=London,uk&appid=b6907d289e10d714a6e88b30761fae22");
        }
    });

}

private class JsonCLASS extends AsyncTask<String, String, String> {
    @Override
    protected void onPreExecute() {
        super.onPreExecute();


        pd = new ProgressDialog(MainActivity.this);
        pd.setMessage("Please wait");
        pd.setCancelable(false);
        pd.show();
    }

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


        HttpURLConnection connection = null;
        BufferedReader reader = null;

        try {
            URL url = new URL(params[0]);
            connection = (HttpURLConnection) 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 + "\n");
                Log.d("Response: ", "> " + line);   //here u ll get whole response...... :-)

            }

            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);


        try {
            JSONObject jsonObject = new JSONObject(result);
            JSONArray Arr = new JSONArray(jsonObject.getString("weather"));
            for (int i = 0; i < Arr.length(); i++){

                JSONObject jsonPart = Arr.getJSONObject(i);


                 ArrayDati.put(i,new ValoriDiSueg( jsonPart.getString("main"), jsonPart.getString("description")));
                //ArrayDati.put(i,new ValoriDiSueg("description : "+ jsonPart.getString("description")));
                textViewProg.setText(textViewProg.getText()+"main : "+ ArrayDati.get(i).Main +"\n"+textViewProg.getText()+"description : "+ ArrayDati.get(i).Description );

            }

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


        if (pd.isShowing()) {
            pd.dismiss();
        }


    }


}
}

然后我创建了一个类:

public class ValoriDiSueg {

 String Main;
 String Description;


 public ValoriDiSueg(String main, String description) {
     this.Main  = main;
     this.Description = description;
 }

 }

有什么建议吗??

最佳答案

简单来说:

  • 如果您的键是 int 或 long,您应该使用 SparseArray、SparseLongArray,因为它不会在操作时对键值进行装箱/拆箱。此外,只要键是 int/long,它就为 int/long 值提供类似的类。

  • 如果您的键不是 int 或 long,例如对象或字符串,您应该改用 ArrayMap,因为它将处理键哈希的冲突。

这两个类在性能和内存使用方面没有太大差异,因为它们都需要 O(log n) 来搜索和 O(n) 来插入/删除(在大多数情况下)。

关于android - arraymap 比稀疏数组更好地记住从 JSON 文件中捕获的一些数据?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54734508/

相关文章:

android - 平滑地设置 BottomSheet 窥视高度的动画

java - Retrofit2+RxJava 在 OnNext() 中向 Model 类返回 null

php explode 所有字符

c++ - 如何根据第一个或第二个中的较大值对数组对进行排序

iphone - Appcelerator 钛 : Android SDK doesn't load

android - 如何在 Android Studio 布局编辑器中使用自定义分辨率?

python:创建一个不规则的迭代器

javascript - 选择数组javascript中的最后一项

ruby-on-rails - Rails:使用 Decoder::Countries[:US].states 使用美国各州和缩写填充选择列表

安卓ddms错误