首页>代码>struts2 poi导出excel实例代码下载>/table2excel/src/main/java/com/test/Main.java
package com.test;

import java.io.FileOutputStream;

import org.apache.poi.hssf.usermodel.HSSFWorkbook;
import org.apache.poi.ss.usermodel.Row;
import org.apache.poi.ss.usermodel.Sheet;
import org.apache.poi.ss.usermodel.Workbook;

import com.meterware.httpunit.GetMethodWebRequest;
import com.meterware.httpunit.WebConversation;
import com.meterware.httpunit.WebRequest;
import com.meterware.httpunit.WebResponse;
import com.meterware.httpunit.WebTable;

public class Main {

	public static void main(String[] args) throws Exception {
		WebConversation wc = new WebConversation();
		WebRequest request = new GetMethodWebRequest(
				"http://www.javaniu.com/table.html");
		WebResponse response = wc.getResponse(request);
		WebTable table = response.getTables()[0];
		Workbook wb = new HSSFWorkbook();
		Sheet sheet = wb.createSheet("table2excel");

		int rowCount = table.getRowCount();
		int columnCount = table.getColumnCount();
		for (int i = 0; i < rowCount; i++) {
			Row row = sheet.createRow(i);
			for (int j = 0; j < columnCount; j++) {
				System.out.println(table.getCellAsText(i, j));
				row.createCell(j).setCellValue(table.getCellAsText(i, j));
			}
		}
		FileOutputStream fileOut = new FileOutputStream("c:/workbook.xls");
		wb.write(fileOut);
		fileOut.close();
	}
}
最近下载更多
业务管理  LV7 2021年1月28日
645274617  LV1 2020年9月27日
EdgarLi  LV14 2020年8月6日
1790158789  LV1 2020年1月10日
苦中苦  LV2 2019年11月18日
pjd6086860  LV4 2019年11月1日
kakaliu  LV2 2019年9月13日
qufujunAQ  LV5 2019年8月30日
wangxiaozhe99  LV1 2019年8月2日
kong.yee  LV40 2019年7月30日
最近浏览更多
WBelong  LV8 9月9日
cchhcc  LV2 3月5日
镜影  LV3 2023年9月14日
Eddie233  LV6 2023年6月14日
gvin001  LV14 2023年5月10日
微信网友_6220678544494592  LV1 2022年11月18日
1306878374  LV13 2022年4月11日
sl0018  LV13 2021年10月3日
雨凤凰  LV4 2021年8月25日
小粥1111 2021年8月11日
暂无贡献等级
顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友