我写了一个程序:可以从 1 到 49 中选择 12 个数字,生成的组合数字会自动显示在电子表格中,因此每列将有 6 个数字。
下面是我的代码。
import java.io.FileOutputStream;
import java.io.IOException;
import org.apache.poi.ss.usermodel.CreationHelper;
import org.apache.poi.xssf.usermodel.XSSFRow;
import org.apache.poi.xssf.usermodel.XSSFSheet;
import org.apache.poi.xssf.usermodel.XSSFWorkbook;
public class Lotto {
/**
* @param args
* @throws IOException
*/
public static void main(String[] args) throws IOException {
int lotto[ ] = new int [12];
boolean drawn;
for (int i=0; i<12; i++) {
do {
drawn = false;
lotto[i] = (int)(49*Math.random())+ 1;
for (int j=0; j<i; j++)
if (lotto[i] == lotto[j])
drawn = true;
} while (drawn);
}
for(int i=0;i<12;i++){
System.out.println(lotto[i]);
}
XSSFWorkbook wb = new XSSFWorkbook();
FileOutputStream fileOut = new FileOutputStream("D:/workbook.xlsx");
CreationHelper createHelper = wb.getCreationHelper();
XSSFSheet sheet = wb.createSheet("new sheet");
int i=0;
while(i<lotto.length/6){
XSSFRow row = sheet.createRow(i);
for(int k=0;k<6;k++){
for(int j=0;j<lotto.length;j++){
row.createCell(k).setCellValue(lotto[j]);
}
}
i++;
}
// FileOutputStream fileOut = new FileOutputStream("workbook.xls");
wb.write(fileOut);
fileOut.close();
}
}
例如上面程序生成的随机数如下。
30 44 39 7 6 33 19 28 31 21 49 22
但在 xls 文件中,它插入为
30 30 30 30 30 30
44 44 44 44 44 44
我需要输出为
30 44 39 7 6 33
19 28 31 21 49 22