我有一个类,它创建excel表。为此我将poi-3.2.jar添加到classpath。
我正在使用Eclipse3.7
我通过使用WindowTester Pro记录工作台操作生成了测试用例。
我编辑了生成的测试用例并尝试在其中创建excel表,以编写测试结果。
如果我使用普通java程序中的相同API(在该插件本身内),它可以创建没有错误的excel文件。
但是,当我尝试从testcase创建时,我收到以下错误:
java.lang.NoClassDefFoundError: org/apache/poi/hssf/usermodel/HSSFWorkbook
我已将所需的jar文件添加到lib文件夹中并添加到build-path。 为什么它从普通的java程序开始工作,但是没有使用WindowTester生成的测试用例。
这是我的代码:
import com.windowtester.runtime.IUIContext;
import com.windowtester.runtime.swt.UITestCaseSWT;
import com.windowtester.runtime.swt.locator.eclipse.WorkbenchLocator;
public class Configuration extends UITestCaseSWT {
/*
* @see junit.framework.TestCase#setUp()
*/
protected void setUp() throws Exception {
super.setUp();
IUIContext ui = getUI();
try {
CreateExcelFile file = new CreateExcelFile();
file.CreateExcel();
} catch (Throwable e) {
System.out.println("***** Exception catched.. *****");
// fail("Configuration failed");
e.printStackTrace();
}
ui.ensureThat(new WorkbenchLocator().hasFocus());
}
/**
* Main test method.
*/
public void testConfiguration() throws Exception {
//Test code
}
@Override
protected void tearDown() throws Exception {
super.tearDown();
// ....
}
}
public class CreateExcelFile {
HSSFRow row;
HSSFRichTextString string;
public void CreateExcel() {
try {
String filename = "E:/hello.xls";
HSSFWorkbook hwb = new HSSFWorkbook();
HSSFSheet sheet = hwb.createSheet("new sheet");
HSSFRow rowhead = sheet.createRow((short) 0);
string = new HSSFRichTextString("TC_Name");
rowhead.createCell((int) 0).setCellValue(string);
string = new HSSFRichTextString("Result");
rowhead.createCell((int) 1).setCellValue(string);
for (int i = 0; i <= 10; i++) {
row = sheet.createRow((short) i);
string = new HSSFRichTextString("TC_Name" + i);
row.createCell((int) 0).setCellValue(string);
if (i % 2 == 0) {
row.createCell((int) 1).setCellValue(true);
} else {
row.createCell((int) 1).setCellValue(false);
}
}
FileOutputStream fileOut = new FileOutputStream(filename);
hwb.write(fileOut);
fileOut.close();
System.out.println("Your excel file has been generated!");
} catch (Exception ex) {
System.out.println(ex);
}
}
}
任何人都可以帮助我。
答案 0 :(得分:0)
我遇到了问题原因。它是因为运行时类路径。解决方案,我发现是在清单编辑器中打开MANIFEST.MF。然后在运行时选项卡,Classpath部分,添加了所需的JAR。
现在它的工作没有错误。