私は 100 レコード [1 -> 100] を持っています。これでランダムな 50 レコードを取得したいのですが、Java で行うにはどうすればよいですか? ありがとう。
質問する
810 次
4 に答える
5
Set<T> set;
List<T> list = new ArrayList<T>(set);
Collections.shuffle(list);
List<T> random50 = list.subList(0, 50);
于 2012-11-04T10:56:48.313 に答える
1
50 個のランダム値を取得できます。
Random rand = new Random();
List<Integer> ints = new ArrayList<Integer>();
for(int i = 0; i < 50; i++)
ints.add(rand.nextInt(100)+1);
シャッフルを使用すると、ランダムな順序で 50 個の一意の値を取得できます。
List<Integer> ints = new ArrayList<Integer>();
for(int i = 1; i <= 100; i++)
ints.add(i);
Collections.shuffle(ints);
ints = ints.subList(0, 50);
于 2012-11-04T11:08:48.333 に答える
0
4 桁の一意のコードを生成する唯一の確実な方法。
最初に4つの整数変数を宣言し、それぞれに1から9までのランダムな数字を割り当てることがわかりました。
次に、これらの整数を文字列に変換し、それらを結合して 4 桁の長い文字列を形成し、結果の文字列を整数に変換します。
結果として得られる 4 桁のランダムな整数は、配列に格納されます。
「注意してください!!私はJavaが初めてです」
import javax.swing.JOptionPane;
public class Rund4gen {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
// I begin by creating an array to store all my numbers
String userInput = JOptionPane.showInputDialog("How many 4 digit long numbers would you like to generate?");
int input = Integer.parseInt(userInput);
// Now lets convert user input to a string
int[] passCode = new int[input];
// We need to loop as many time as the user specified
for(int i = 0; i < input; i++){
// Here I declare my integer variables
int one, two, three, four;
// For each of the integer variable I assign a rundom number
one = (int)Math.floor((Math.random()*9)+1);
two = (int)Math.floor((Math.random()*9)+1);
three = (int)Math.floor((Math.random()*9)+1);
four = (int)Math.floor((Math.random()*9)+1);
// I need to convert my digits into a string in order to join them
String n1 = String.valueOf(one);
String n2 = String.valueOf(two);
String n3 = String.valueOf(three);
String n4 = String.valueOf(four);
// Once conversion is complete then I join them as follows
String nV = n1+n2+n3+n4;
// Once joined, I then need to convert the joined result into an integer
int nF = Integer.parseInt(nV);
// I then store the result in an array as follows
passCode[i] = nF;
}
// Now I need to print each value in the array
for(int c = 0; c < passCode.length; c++){
System.out.print(passCode[c]+"\n");
}
// Finally I thank the user for participating or not
//JOptionPane.showMessageDialog(null,"Thank you for participating");
System.exit(0);
}
}
于 2014-06-12T08:35:35.430 に答える