0

我有一个 Excel 表,其第一列包含以下数据“什么是 ${v2} 的 ${v1} %?”,此表中的另外两列(v1 和 v2)包含 {“type”:“int”,“minimum ":15, "maximum":58} 和 {"type":"int", "minimum":30, "maximum":100},这些是变量 v1 和 v2 的范围。我需要用给定范围内的随机值替换表达式中的 v1 和 v2,并使用 JAVA 将表达式存储在另一个电子表格中。我怎样才能通过使用 JETT 来做到这一点?

例如:我应该存储“50 的 25% 是多少?”

这就是我所做的,我能够读取我的 java 程序中的列,但不能替换值

import java.io.FileInputStream;
import java.util.ArrayList;
import java.util.List;
import org.apache.poi.hssf.usermodel.HSSFSheet;
import org.apache.poi.hssf.usermodel.HSSFWorkbook;
import org.apache.poi.poifs.filesystem.POIFSFileSystem;
import org.apache.poi.ss.usermodel.Cell;
import org.apache.poi.ss.usermodel.Row;

public class ACGS {

public static void main(String[] args) throws Exception {  
//test file is located in your project path         
FileInputStream fileIn = new FileInputStream("C://users/user/Desktop/Content.xls");
//read file 
POIFSFileSystem fs = new POIFSFileSystem(fileIn);  
HSSFWorkbook filename = new HSSFWorkbook(fs);
//open sheet 0 which is first sheet of your worksheet
HSSFSheet sheet = filename.getSheetAt(0);

//we will search for column index containing string "Your Column Name" in the row 0 (which is first row of a worksheet
String columnWanted = "${v1}";
Integer columnNo = null;
//output all not null values to the list
List<Cell> cells = new ArrayList<Cell>();
Row firstRow = sheet.getRow(0);

for(Cell cell:firstRow){
if (cell.getStringCellValue().contains(columnWanted)){
    columnNo = cell.getColumnIndex();
    System.out.println("cell contains "+cell.getStringCellValue());
    }
}

if (columnNo != null){
 for (Row row : sheet) {
Cell c = row.getCell(columnNo);
if (c == null || c.getCellType() == Cell.CELL_TYPE_BLANK) {
  // Nothing in the cell in this row, skip it
} else {
  cells.add(c);
      }
}
}   else{
System.out.println("could not find column " + columnWanted + " in first row of " + fileIn.toString());
     }
   }
}
4

1 回答 1

1

首先,看起来您根本没有使用 JETT。您似乎正在尝试自己阅读电子表格并进行一些处理。

这是您在 JETT 中执行此操作的方法。JETT 不提供自己的随机数支持,但连同其 Apache Commons JEXL 表达式支持和 Java 自己的Random,您可以将随机变量的预期范围作为 bean 发布到 JETT,您可以使用表达式计算随机变量.

首先,创建您的模板电子表格,使用JETT 将评估的表达式(介于${和之间)填充它。}一个单元格可能包含这样的内容。

${rnd.nextInt(v2Max - v2Min + 1) + v2Min} 的 ${rnd.nextInt(v1Max - v1Min + 1) + v1Min}% 是多少?

接下来,创建要提供给 JETT 的 bean。这些 bean 是可用于电子表格模板中的 JEXL 表达式的命名对象。

Map<String, Object> beans = new HashMap<String, Object>();
beans.put("v1Min", 15);
beans.put("v1Max", 58);
beans.put("v2Min", 30);
beans.put("v2Max", 100);
beans.put("rnd", new Random());

接下来,创建调用 JETT 的代码ExcelTransformer

try
{
   ExcelTransformer transformer = new ExcelTransformer();
   // template file name, destination file name, beans
   transformer.transform("Content.xls", "Populated.xls", beans);
}
catch (IOException e)
{
   System.err.println("IOException caught: " + e.getMessage());
}
catch (InvalidFormatException e)
{
   System.err.println("InvalidFormatException caught: " + e.getMessage());
}

在生成的电子表格中,您将看到已评估的表达式。在包含上述表达式的单元格中,您将看到例如:

38 的 41% 是多少?

(或者您会看到不同的数字,具体取决于生成的随机数。)

于 2015-01-07T23:20:42.983 回答