2

我想从我的类数据源中读取一个参数:

public class Datasource {
public final static String M = "M"; 
public final static String M_SHEET ="Config";
public final static String M_LOC = "C6";
public final static int M_DEFAULT = 2; // default value
...
}

通过使用方法changeParameters:

public static void changeParameter(String param, double value) {
    String parameter = param.toUpperCase(); // uppercase to match the final variable from Datasource

    InputStream inp = new FileInputStream(Datasource.EXCELFILENAME);
    // Excelconnection
    Workbook wb = WorkbookFactory.create(inp);
    String sheetName = "Datasource." + parameter + "_SHEET";
    Sheet sheet = wb.getSheet(sheetName);
    String excelCell = "Datasource." + parameter + "_LOC";
    int rowInt = getRow(excelCell);
    Row row = sheet.getRow(rowInt);
    int cellInt = getCell(excelCell);
    Cell cell = row.createCell(cellInt);
    cell.setCellValue(value);
    // Write the output to a file
    FileOutputStream fileOut = new FileOutputStream(Datasource. EXCELFILENAME);
    wb.write(fileOut);
    fileOut.close();
}

getRow 和 getCell 都以字符串作为参数来获取 Excelrow 和 Excelcolumn。有谁知道我如何才能知道字符串 sheetName 和 excelCell 不被视为字符串,而是作为对来自数据源的字符串的引用(例如,访问“C6”而不是“Datasource.M_LOC”?

4

2 回答 2

2

您可以为此使用反射。

Class clazz = DataSource.class;
Field field = clazz.getField("M_LOC"); // use getDeclaredField if the field isn't public
String str = (String)field.get(null); // it's a static field, so no need to pass in a DataSource reference

或者,在 DataSource 中放置一个 hashmap,其中字段名称作为键,字段值作为值。

我相信getField并且getDeclaredField是线性时间方法,所以如果可能的话,你应该缓存它们的结果。

于 2013-04-15T21:08:03.953 回答
2

如果您要通过字符串引用事物,为什么要将它们存储为单独的变量?为什么不使用Map<String, String>? 这样,当您需要访问由 引用的字符串时"Datasource.M_LOC",您可以使用

Map<String,String> referenceMap;
...
referenceMap.get(parameter+"_LOC");
于 2013-04-15T21:09:02.343 回答