在user.dir中读取excel文件

时间:2015-11-04 06:13:50

标签: java eclipse

这是一种在便携性方面定位的好方法吗?我的excel文件放在eclipse中的 src 文件夹下。

// Flip the image horizontally
tx = AffineTransform.getScaleInstance(-1, 1);
tx.translate(-image.getWidth(null), 0);
op = new AffineTransformOp(tx, AffineTransformOp.TYPE_NEAREST_NEIGHBOR);
image = op.filter(image, null);

2 个答案:

答案 0 :(得分:0)

你应该更普遍地写它,比如:

public void testFile(String pathToFile, String filename, String sheet) throws Exception {

    ReadExcelFile file = new ReadExcelFile ();

    //Read keyword sheet

    Sheet TestSheet = file.readExcel(pathFoFile, filename, sheet);
}

希望你想要实现。

答案 1 :(得分:0)

如果您正在为此应用程序使用maven,并且您的意图是每次对Sample XLS文件进行单元测试....那么请考虑将测试用例文件放在src / test / resources下。

这样: - 您将能够对每个构建进行单元测试 - 测试用例XLS不会与您的JAR捆绑在一起(如果您想捆绑它,那么将它放在src / main / resources下)

如果这是应用程序需要在生产中使用的东西,我建议将其作为参数传递给此应用程序。

希望这会有所帮助:)