java는 파일에 있는 모든 excel 파일을 읽을 수 있습니다
그러나 이렇게 하는 것은 너무 번거롭다. 그래서 두 개의 클래스를 써서 excel 파일을 처리하고, 한 클래스는 폴더 아래의 파일을 읽는다.
다음은 코드를 드리겠습니다.
excel 클래스 분석 (읽기와 쓰기 업데이트 작업 포함)
public class ExcelFile
{
/**
* read
* @param file
*/
public static void readExl(String file){
try
{
Workbook book = Workbook.getWorkbook(new File(file));
Sheet[] sheets = book.getSheets();
for(int i=0; i < sheets.length;i++){
Sheet sheet = sheets[i];
System.out.println("Sheet"+i);
int col = sheet.getColumns();
int row = sheet.getRows();
for( int r=0 ; r < row;r++){
StringBuffer sb = new StringBuffer();
for (int c = 0; c < col; c++)
{
Cell cell = sheet.getCell(c,r);
String result = cell.getContents();
sb.append(result).append(" ");
}
System.out.println(sb.toString());
}
}
book.close();
}
catch (Exception e)
{
System.out.println(e);
}
}
/**
* Update
* @param file
*/
public static void updateExl(String file){
try
{
Workbook wb = Workbook.getWorkbook(new File(file));
WritableWorkbook book = Workbook.createWorkbook(new File(file),wb);
//WritableSheet sheet = book.createSheet("second", 1);
WritableSheet sheet = book.getSheet(0);
Label label = new Label(0,0,"test data 2");
sheet.addCell(label);
book.write();
book.close();
}
catch (Exception e)
{
System.out.println(e);
}
}
public static void readExl(String file, int i){
try
{
Workbook book = Workbook.getWorkbook(new File(file));
Sheet sheet = book.getSheet(i);
Cell cell = sheet.getCell(0,0);
String result = cell.getContents();
System.out.println(result);
book.close();
}
catch (Exception e)
{
System.out.println(e);
}
}
/**
* Create
* @param file
*/
public void createExl(String file){
try
{
WritableWorkbook book = Workbook.createWorkbook(new File(file));
WritableSheet sheet = book.createSheet("first", 0);
Label lable = new Label(0,0,"test");
sheet.addCell(lable);
Number number = new Number(1,0,123);
sheet.addCell(number);
book.write();
book.close();
}
catch (Exception e)
{
e.printStackTrace();
}
}
}
폴더 아래의 파일을 읽는 클래스도 있습니다.
public class ReadFile
{
/**
* Delete
* @param path
* @return
* @throws FileNotFoundException
* @throws IOException
*/
public static boolean deleteFile(String path) throws FileNotFoundException,IOException{
try
{
File file = new File(path);
if (!file.isDirectory())
{
file.delete();
}else{
String filelist[] = file.list();
for(int i=0; i< filelist.length;i++){
File delfile = new File(path +"\\"+filelist[i]);
if(delfile.isDirectory()){
System.out.println("FileName:"+delfile.getName());
System.out.println("AbsolutePath:"+delfile.getAbsolutePath());
delfile.delete();
}else{
deleteFile(path+"\\"+filelist[i]);
}
}
file.delete();
}
}
catch (Exception e)
{
System.out.println("deletFile() Exception:"+e.getMessage());
}
return true;
}
/**
* Read
* @param path
* @return
* @throws FileNotFoundException
* @throws IOException
*/
public static boolean readFile(String path) throws FileNotFoundException,IOException{
try
{
File file = new File(path);
if (!file.isDirectory())
{
}else{
System.out.println(" ");
String[] filelist = file.list();
for (int i = 0; i < filelist.length; i++)
{
File readFile = new File(path+"\\"+filelist[i]);
if(!readFile.isDirectory()){
System.out.println("read file Name:" + readFile.getName());
ExcelFile.readExl(readFile.getPath());
System.out.println("------------------------");
//System.out.println("path=" + readFile.getPath());
//System.out.println("absolutepath=" + readFile.getAbsolutePath());
//System.out.println("name=" + readFile.getName());
}else{
readFile(path+"\\"+filelist[i]);
}
}
}
}
catch (Exception e)
{
System.out.println("readFile() Exception:"+e.getMessage());
}
return true;
}
public static void main(String[] args)
{
try
{
readFile("C:/Documents and Settings/Developer/Desktop/All-01012012-05312012");
}
catch (FileNotFoundException e)
{
// TODO Auto-generated catch block
e.printStackTrace();
}
catch (IOException e)
{
// TODO Auto-generated catch block
e.printStackTrace();
}
//deleteFile("C:/Documents and Settings/Developer/Desktop/All-01012012-05312012/All-01012012-05312012/ok");
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.