所以,我的代码是这样的:
import java.util.Random;
String[] arr= (vars.get("Types")).split(";");
int idx = new Random().nextInt(arr.length);
String type = (arr[idx]);
vars.put("b_type", type);
数组看起来像这样
` arr = {"id":1, "type_1":1},{"id":2, "type_2":2},{"id":3, "type_3":3},{"id":4, "type_4":4},...'
有人可以帮忙吗?我需要从数组'arr'获得随机的arr2。
它可能是一个像
的元素`arr1 = {id:value, type_1:value}`
或其中一些,即
`arr1 = [{"id":1, "type_1":1},{"id":4, "type_4":4}]`
或等效的arr1 = arr
答案 0 :(得分:2)
首先你需要一个随机整数值来表示数组元素的数量,然后生成随机元素并插入到新数组中。
//number of elements in result array
int count = new Random().nextInt(arr.length);
ArrayList<String> result = new ArrayList<String>();
for(int i=0; i<count; i++){
//random index of element that must be added to result
int index = new Random().nextInt(arr.length);
result.add(arr[index]);
}
确保结果数组中的元素不重复。
这是一个解决方案: 将数组元素插入ArrayList,以便编辑元素
ArrayList<String> myarray = new ArrayList<String>();
for(int i=0; i<arr.length; i++){
myarray.add(arr[i]);
}
然后在for:
中for(int i=0; i<count; i++){
//random index of element that must be added to result
int index = new Random().nextInt(myarray.length);
result.add(myarray[index]);
myarray.remove(index);
}