자바 엑셀 가 져 오기 및 내 보 내기

1.jxl.jar 패 키 지 를 다운로드 하여 프로젝트 에 가 져 오기
http://download.csdn.net/detail/lrici/9758600
2.책 새로 만 들 기.java
package com.cc.reflection;

public class Book {
	
	private int id;
	private String name;
	private String type;
	public int getId() {
		return id;
	}
	public void setId(int id) {
		this.id = id;
	}
	public String getName() {
		return name;
	}
	public void setName(String name) {
		this.name = name;
	}
	public String getType() {
		return type;
	}
	public void setType(String type) {
		this.type = type;
	}
	

}

3.새 엑셀 북
package com.cc.reflection;

import java.io.File;
import java.io.IOException;
import java.util.ArrayList;

import jxl.Cell;
import jxl.Sheet;
import jxl.Workbook;
import jxl.read.biff.BiffException;
import jxl.write.Label;
import jxl.write.WritableSheet;
import jxl.write.WritableWorkbook;
import jxl.write.WriteException;

public class ExcelBook {

	//      Excel
	public void excelOut(ArrayList<Book> arrayList) {
		WritableWorkbook bWorkbook = null;
		try {
			//   Excel  
			bWorkbook = Workbook.createWorkbook(new File("D:/book.xls"));
			//   Excel           
			WritableSheet sheet = bWorkbook.createSheet("sheet1", 0);
			//         
			for (int i = 0; i < arrayList.size(); i++) {
				Book book=arrayList.get(i);
				Label label=new Label(0,i,String.valueOf(book.getId()));
				Label label1=new Label(1,i,String.valueOf(book.getName()));
				Label label2=new Label(2,i,String.valueOf(book.getType()));
				sheet.addCell(label);
				sheet.addCell(label1);
				sheet.addCell(label2);
			}
			
			
			//          ,     ,     ,     
			Label label = new Label(0, 2, "test");
			//               
			//sheet.addCell(label);
			//       
			bWorkbook.write();

		} catch (Exception e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		} finally {
			try {
				bWorkbook.close();
			} catch (WriteException | IOException e) {
				// TODO Auto-generated catch block
				e.printStackTrace();
			}
		}

	}
	
	
	// Excel      
	public ArrayList<Book> ExcelIn(){
		ArrayList<Book>arrayList=new ArrayList<Book>();
		Workbook bWorkbook=null;
		try {
			bWorkbook=Workbook.getWorkbook(new File("D:/book.xls"));
			Sheet sheet=bWorkbook.getSheet(0);
			for (int i = 0; i < sheet.getRows(); i++) {
				Book book=new Book();
				//       
				Cell cell =sheet.getCell(0,i);
				//       
				book.setId(Integer.valueOf(cell.getContents()));
				book.setName(sheet.getCell(1,i).getContents());
				book.setType(sheet.getCell(2, i).getContents() );
				arrayList.add(book);
				
			}
			
		} catch (BiffException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		} catch (IOException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}finally {
			bWorkbook.close();
		}
		return arrayList;
	}
	

	public static void main(String[] args) {
		
		//      Excel 
		ExcelBook book = new ExcelBook();
//		ArrayList<Book> arrayList = new ArrayList<Book>();
//		Book bo = new Book();
//		bo.setId(1);
//		bo.setName("  ");
//		bo.setType("  ");
//
//		Book bo1 = new Book();
//		bo1.setId(2);
//		bo1.setName("  1");
//		bo1.setType("  1");
//
//		arrayList.add(bo);
//		arrayList.add(bo1);
//		book.excelOut(arrayList);
		
		//    Excel   
		ArrayList<Book> arrayList1 = book.ExcelIn();
		for(Book bo2:arrayList1){
			System.out.println(bo2.getName()+bo2.getType());
		}
	}
}

클릭 하여 실행

좋은 웹페이지 즐겨찾기