我有这个 ArrayList 的数据填充了我打开的文件中的数字,我希望能够通过输入样本的大小和我想要的样本数来从中生成随机数。所以我有以下...
private JTextField jtfN = new JTextField();// where i enter the amount of samples
private JTextField jtfn = new JTextField();// where i enter the size of samples
private ArrayList< Double> data = new ArrayList< Double>();
我有两个文本字段,一个名为 jtfn(样本大小)和一个 jtfN(样本数量),我在其中输入值。然后,我有一个名为 jbtnGenerate 的按钮,当我单击时,我希望它从上面输入的 jtfn 和 jtfN 的数据中生成随机数,然后将其放入名为 jta 的 TextArea
那是我打开文件并将数字添加到数据中的地方
if( jfc.showOpenDialog(this) == JFileChooser.APPROVE_OPTION ) {
String file = jfc.getSelectedFile().getPath();
String line = null;
String[] ch;
try {
FileReader fr = new FileReader( file);
BufferedReader br = new BufferedReader(fr);
data.clear();
while( (ligne=br.readLine())!=null ) {
ch = line.split( ";" );
for (int i = 0; i < ch.length; i++) {
data.add( Double.parseDouble(ch[i]) );
}
}
br.close();
}
catch( IOException ioe ) {
}
}
那是我希望在其中发生操作的按钮“生成”的侦听器。
jbtnGenerer.addActionListener( new ActionListener() {
public void actionPerformed( ActionEvent ae ) {
try {
int sampSize = Integer.parseInt(jtfn.getText());
int nSamples = Integer.parseInt(jtfN.getText());
double samps[][] = new double[nSamples][sampSize];
for(int i = 0 ; i < nSamples; i++){
for(int j = 0 ; j < sampSize; j++)
samps[i][j] = (Double) data.toArray()[ rng.nextInt() % data.size() ];
}
jta.append(samps.toString());
} catch (NumberFormatException e) {
}
}
});
谢谢您的帮助