我需要根据商品的价格对商品进行分类。
每件商品的价格存储在 JSON 数组中
我创建了一个二维数组来存储名称和价格
像这样的东西...
String [][] priceArray = new String [itemArray.length()] [2];
for(int i = 0; i < itemArray.length(); i++)
{
//put the item name in the first dimension
priceArray[i][0] = itemArray.getJSONObject(i).getString("name");
//put the item price in the second dimension
priceArray[i][1] = itemArray.getJSONObject(i).getString("baseprice");
}
//DEBUG TO SEE THE RESULTS
for(int i = 0; i < priceArray.length; i++)
{
Log.i("Item name : Item Price", priceArray[i][0] + " : " + priceArray[i][1]);
}
这很好用......但是我如何按第二维中的价格对数组进行排序?
这甚至是最好的方法吗?