資料的基本的匯入匯出,很詳細

2021-08-31 19:06:20 字數 1244 閱讀 2076

這裡是通過jxl實現對excel的匯入匯出的,可以動態建立本地excel,讀取本地excel,寫入excel。

只需匯入jxl.jar包即可;

基本操作:

writablefont wf1=new writablefont(writablefont.arial);

wf1.setcolour(colour.gold);//設定字型顏色

writablecellformat wcf1=new writablecellformat(wf1);

label fd=new label(0,1,"學校",wcf1);

sheet.addcell(fd);

label be=new label(1,1,"專業",wcf1);

sheet.addcell(be);

label rq=new label(0,2,"清華大學");

sheet.addcell(rq);

label rq1=new label(1,2,"軟體工程");

sheet.addcell(rq1);

//把建立的內容寫入輸出流,並關閉

wwb.write();

wwb.close();

os.close();

} catch (exception e)

}

//把建立的內容寫入輸出流,並關閉

wwb.write();

wwb.close();

os.close();

} catch (exception e)

}四:讀取本地execel檔案資料

//讀取本地execel檔案資料

public static void readexcel(studentservice studentservice,string filepath)

} catch (exception e) finally catch (ioexception e) 

} //從伺服器讀取execel

excelutil.readexcel(studentservice,"f:\\temp\\"+filefilename);

system.out.println("匯入 execel ok");

return "all";

}

六 匯出excel匯出

public string executeexport()

資料的匯出匯入

異構資料庫之間資料交換,主要使用txt文字檔案 以下記錄乙個工具的使用 sqluldr.zip主要使用oci庫運算元據庫,效能很好。可以很好的匯出txt文字 使用之前需要安裝oracle客戶端,配置好tnsname user username password tnsname 使用者名稱密碼 sql...

MySQL 資料匯入匯出之命令詳細

mysql匯入匯出命令 mysqldump命令的輸入是在bin目錄下.1.匯出整個資料庫 mysqldump u 使用者名稱 p 資料庫名 匯出的檔名 2.匯出乙個表 mysqldump u 使用者名稱 p 資料庫名 表名 匯出檔案的路徑和名稱 3.匯出乙個資料庫結構 d 沒有資料 add drop...

MySQL資料的匯入匯出

一 建庫和建表以及插入資料的例項。drop database if exists school 如果存在school則刪除 create database school 建立庫school use school 開啟庫school create table teacher 建立表teacher id...