제이콥, 엑셀.
JacobExcelUtil
import java.io.File;
import java.io.FileNotFoundException;
import java.util.List;
import com.jacob.activeX.ActiveXComponent;
import com.jacob.com.ComThread;
import com.jacob.com.Dispatch;
import com.jacob.com.Variant;
/**
* Jacob excel Util
*
*/
public class JacobExcelUtil {
private String file;
private boolean readonly = false;
private static String[] ABC = { "A", "B", "C", "D", "E", "F", "G", "H",
"I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U",
"V", "W", "X", "Y", "Z" };
public JacobExcelUtil(String file) throws FileNotFoundException {
this.file = file;
File f = new File(file);
if(!f.exists()) {
throw new FileNotFoundException();
}
}
/**
*
* @param cells
*/
public void putData(List<ExcelCell> cells) throws Exception {
if(cells == null || cells.size() == 0 ) {
return;
}
ActiveXComponent excel = null;
Dispatch workbooks = null;
Dispatch workbook = null;
Dispatch sheet = null;
String filename = null;
//
ComThread.InitSTA();
// open file
try {
filename = file;
excel = new ActiveXComponent("Excel.Application");
excel.setProperty("Visible", new Variant(false));
workbooks = excel.getProperty("Workbooks").toDispatch();
workbook = Dispatch.invoke(
workbooks,
"Open",
Dispatch.Method,
new Object[] { filename, new Variant(false),
new Variant(readonly) }, //
new int[1]).toDispatch();
// put data
sheet = Dispatch.get(workbook, "ActiveSheet").toDispatch();
String position = null;
int row = 0;
int col = 0;
int max = 26*26-1;
for (ExcelCell c : cells) {
row = c.getRow();
col = c.getCol();
if (row < 0 || col < 0 || col > max || c.getValue() == null
|| c.getValue().trim().equals("")) {
continue;
}
position = translateLocation(c.getRow(), c.getCol());
setValue(sheet, position, c.getValue());
}
} finally {
// close file
try {
Dispatch.call(workbook, "Save");
Dispatch.call(workbook, "Close", new Variant(false));
} finally {
excel.invoke("Quit", new Variant[] {});
ComThread.Release();
}
}
}
/**
*
* 26*26
* @param i
* @param j
* @return
*/
public String translateLocation(int i, int j) {
String loc = "";
if (i <= 26) {
loc = ABC[i-1] + (j);
} else {
loc = ABC[i/26-1] + ABC[i%26-1] + (j);
}
return loc;
}
/**
*
*
* @param sheet
* @param position
* @param value
*/
protected void setValue(Dispatch sheet, String position, String value) {
Dispatch cell = Dispatch.invoke(sheet, "Range", Dispatch.Get,
new Object[] { position }, new int[1]).toDispatch();
Dispatch.put(cell, "Value", value);
}
/**
*
*
* @param sheet
* @param position
* @return
*/
protected String GetValue(Dispatch sheet, String position) {
Dispatch cell = Dispatch.invoke(sheet, "Range", Dispatch.Get,
new Object[] { position }, new int[1]).toDispatch();
String value = Dispatch.get(cell, "Value").toString();
return value;
}
public static void main(String[] args) {
}
}
ExcelCell
public class ExcelCell {
private int row;
private int col;
private String value;
public ExcelCell() {
}
public ExcelCell(int row, int col, String value) {
this.row = row;
this.col = col;
this.value = value;
}
public int getRow() {
return row;
}
public void setRow(int row) {
this.row = row;
}
public int getCol() {
return col;
}
public void setCol(int col) {
this.col = col;
}
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Excel Grep toolExcel Grep tool ■히나가타 ■ 시트 구성 ExcelGrep.cls...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.