真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

java生成表格代碼 java 生成excel表格

java如何輸出xls格式的Excel表格文件

有個(gè)開源的東東-jxl.jar,可以到下載。

濟(jì)源ssl適用于網(wǎng)站、小程序/APP、API接口等需要進(jìn)行數(shù)據(jù)傳輸應(yīng)用場(chǎng)景,ssl證書未來市場(chǎng)廣闊!成為創(chuàng)新互聯(lián)的ssl證書銷售渠道,可以享受市場(chǎng)價(jià)格4-6折優(yōu)惠!如果有意向歡迎電話聯(lián)系或者加微信:028-86922220(備注:SSL證書合作)期待與您的合作!

一.讀取Excel文件內(nèi)容

/**讀取Excel文件的內(nèi)容

* @param file 待讀取的文件

* @return

*/

public static String readExcel(File file){

StringBuffer sb = new StringBuffer();

Workbook wb = null;

try {

//構(gòu)造Workbook(工作?。?duì)象

wb=Workbook.getWorkbook(file);

} catch (BiffException e) {

e.printStackTrace();

} catch (IOException e) {

e.printStackTrace();

}

if(wb==null)

return null;

//獲得了Workbook對(duì)象之后,就可以通過它得到Sheet(工作表)對(duì)象了

Sheet[] sheet = wb.getSheets();

if(sheet!=nullsheet.length0){

//對(duì)每個(gè)工作表進(jìn)行循環(huán)

for(int i=0;isheet.length;i++){

//得到當(dāng)前工作表的行數(shù)

int rowNum = sheet[i].getRows();

for(int j=0;jrowNum;j++){

//得到當(dāng)前行的所有單元格

Cell[] cells = sheet[i].getRow(j);

if(cells!=nullcells.length0){

//對(duì)每個(gè)單元格進(jìn)行循環(huán)

for(int k=0;kcells.length;k++){

//讀取當(dāng)前單元格的值

String cellValue = cells[k].getContents();

sb.append(cellValue+" ");

}

}

sb.append(" ");

}

sb.append(" ");

}

}

//最后關(guān)閉資源,釋放內(nèi)存

wb.close();

return sb.toString();

}

二.寫入Excel文件

這里有很多格式了,比如文本內(nèi)容加粗,加上某些顏色等,可以參考jxl的api,同時(shí)還推薦一篇不錯(cuò)的文章:

/**生成一個(gè)Excel文件

* @param fileName 要生成的Excel文件名

*/

public static void writeExcel(String fileName){

WritableWorkbook wwb = null;

try {

//首先要使用Workbook類的工廠方法創(chuàng)建一個(gè)可寫入的工作薄(Workbook)對(duì)象

wwb = Workbook.createWorkbook(new File(fileName));

} catch (IOException e) {

e.printStackTrace();

}

if(wwb!=null){

//創(chuàng)建一個(gè)可寫入的工作表

//Workbook的createSheet方法有兩個(gè)參數(shù),第一個(gè)是工作表的名稱,第二個(gè)是工作表在工作薄中的位置

WritableSheet ws = wwb.createSheet("sheet1", 0);

//下面開始添加單元格

for(int i=0;i10;i++){

for(int j=0;j5;j++){

//這里需要注意的是,在Excel中,第一個(gè)參數(shù)表示列,第二個(gè)表示行

Label labelC = new Label(j, i, "這是第"+(i+1)+"行,第"+(j+1)+"列");

try {

//將生成的單元格添加到工作表中

ws.addCell(labelC);

} catch (RowsExceededException e) {

e.printStackTrace();

} catch (WriteException e) {

e.printStackTrace();

}

}

}

try {

//從內(nèi)存中寫入文件中

wwb.write();

//關(guān)閉資源,釋放內(nèi)存

wwb.close();

} catch (IOException e) {

e.printStackTrace();

} catch (WriteException e) {

e.printStackTrace();

}

}

}

三.在一個(gè)Excel文件中查找是否包含某一個(gè)關(guān)鍵字

/**搜索某一個(gè)文件中是否包含某個(gè)關(guān)鍵字

* @param file 待搜索的文件

* @param keyWord 要搜索的關(guān)鍵字

* @return

*/

public static boolean searchKeyWord(File file,String keyWord){

boolean res = false;

Workbook wb = null;

try {

//構(gòu)造Workbook(工作?。?duì)象

wb=Workbook.getWorkbook(file);

} catch (BiffException e) {

return res;

} catch (IOException e) {

return res;

}

if(wb==null)

return res;

//獲得了Workbook對(duì)象之后,就可以通過它得到Sheet(工作表)對(duì)象了

Sheet[] sheet = wb.getSheets();

boolean breakSheet = false;

if(sheet!=nullsheet.length0){

//對(duì)每個(gè)工作表進(jìn)行循環(huán)

for(int i=0;isheet.length;i++){

if(breakSheet)

break;

//得到當(dāng)前工作表的行數(shù)

int rowNum = sheet[i].getRows();

boolean breakRow = false;

for(int j=0;jrowNum;j++){

if(breakRow)

break;

//得到當(dāng)前行的所有單元格

Cell[] cells = sheet[i].getRow(j);

if(cells!=nullcells.length0){

boolean breakCell = false;

//對(duì)每個(gè)單元格進(jìn)行循環(huán)

for(int k=0;kcells.length;k++){

if(breakCell)

break;

//讀取當(dāng)前單元格的值

String cellValue = cells[k].getContents();

if(cellValue==null)

continue;

if(cellValue.contains(keyWord)){

res = true;

breakCell = true;

breakRow = true;

breakSheet = true;

}

}

}

}

}

}

//最后關(guān)閉資源,釋放內(nèi)存

wb.close();

return res;

}

四.往Excel中插入圖片圖標(biāo)

插入圖片的實(shí)現(xiàn)很容易,參看以下代碼:

/**往Excel中插入圖片

* @param dataSheet 待插入的工作表

* @param col 圖片從該列開始

* @param row 圖片從該行開始

* @param width 圖片所占的列數(shù)

* @param height 圖片所占的行數(shù)

* @param imgFile 要插入的圖片文件

*/

public static void insertImg(WritableSheet dataSheet, int col, int row, int width,

int height, File imgFile){

WritableImage img = new WritableImage(col, row, width, height, imgFile);

dataSheet.addImage(img);

}

以上代碼的注釋已經(jīng)很清楚了,大概也就不用再解釋了,我們可以用如下程序驗(yàn)證:

try {

//創(chuàng)建一個(gè)工作薄

WritableWorkbook workbook = Workbook.createWorkbook(new File("D:/test1.xls"));

//待插入的工作表

WritableSheet imgSheet = workbook.createSheet("Images",0);

//要插入的圖片文件

File imgFile = new File("D:/1.png");

//圖片插入到第二行第一個(gè)單元格,長寬各占六個(gè)單元格

insertImg(imgSheet,0,1,6,6,imgFile);

workbook.write();

workbook.close();

} catch (IOException e) {

e.printStackTrace();

} catch (WriteException e) {

e.printStackTrace();

}

但是jxl只支持png格式的圖片,jpg格式和gif格式都不支持

五.插入頁眉頁腳

一般的頁眉頁腳都分為三個(gè)部分,左,中,右三部分,利用如下代碼可實(shí)現(xiàn)插入頁眉頁腳

/**向Excel中加入頁眉頁腳

* @param dataSheet 待加入頁眉的工作表

* @param left

* @param center

* @param right

*/

public static void setHeader(WritableSheet dataSheet,String left,String center,String right){

HeaderFooter hf = new HeaderFooter();

hf.getLeft().append(left);

hf.getCentre().append(center);

hf.getRight().append(right);

//加入頁眉

dataSheet.getSettings().setHeader(hf);

//加入頁腳

//dataSheet.getSettings().setFooter(hf);

}

我們可以用如下代碼測(cè)試該方法:

try {

//創(chuàng)建一個(gè)工作薄

WritableWorkbook workbook = Workbook.createWorkbook(new File("D:/test1.xls"));

//待插入的工作表

WritableSheet dataSheet = workbook.createSheet("加入頁眉",0);

ExcelUtils.setHeader(dataSheet, "chb", "2007-03-06", "第1頁,共3頁");

workbook.write();

workbook.close();

} catch (IOException e) {

e.printStackTrace();

} catch (WriteException e) {

e.printStackTrace();

}

六偷懶工具設(shè)計(jì)之sql2Excel

今天在公司陪山東客戶調(diào)試,遠(yuǎn)程登錄,我在linux下什么工具都沒有,用ssh登錄服務(wù)器,直接用mysql查詢數(shù)據(jù)庫,提出記錄中的所有漢字全是亂碼。哎,可惡的公司,不讓我用windows,要不我就可以用putty或者EMS了,我ft!

甚是不爽之下,我決定自己寫個(gè)工具了,把客戶數(shù)據(jù)庫中的數(shù)據(jù)全部提取并保存到Excel中,這樣我不就可以一目了然了嘛,嘿嘿,好吧,那我就寫一個(gè)工具吧。

第一部分就是誰都會(huì)的jdbc操作,連接數(shù)據(jù)庫,提取數(shù)據(jù)集合。

Connection con;

Statement state;

/**初始化連接

* @param serverIp

* @param dataBase

* @param userName

* @param password

* @throws ClassNotFoundException

* @throws SQLException

*/

public void init(String serverIp,String dataBase,String userName,String password) throws ClassNotFoundException, SQLException{

Class.forName("com.mysql.jdbc.Driver");

//配置數(shù)據(jù)源

String url="jdbc:mysql://"+serverIp+"/"+dataBase+"?useUnicode=truecharacterEncoding=GB2312";

con=DriverManager.getConnection(url,userName,password);

}

/**得到查詢結(jié)果集

* @param sql

* @return

* @throws SQLException

*/

public ResultSet getResultSet(String sql) throws SQLException{

state = con.createStatement();

ResultSet res = state.executeQuery(sql);

return res;

}

/**關(guān)閉連接

* @throws SQLException

*/

public void close() throws SQLException{

if(con!=null)

con.close();

if(state!=null)

state.close();

}

第二部分就是把ResultSet中的記錄寫入一個(gè)Excel文件

操作Excel,我用的是jxl,不熟的同學(xué)可以參考:利用java操作Excel文件

/**將查詢結(jié)果寫入Excel文件中

* @param rs

* @param file

* @throws SQLException

*/

public void writeExcel(ResultSet rs,File file) throws SQLException{

WritableWorkbook wwb = null;

try{

//首先要使用Workbook類的工廠方法創(chuàng)建一個(gè)可寫入的工作薄(Workbook)對(duì)象

wwb = Workbook.createWorkbook(file);

} catch (IOException e){

e.printStackTrace();

}

if(wwb!=null){

WritableSheet ws = wwb.createSheet("sheet1", 0);

int i=0;

while(rs.next()){

Label label1 = new Label(0, i, rs.getString("id"));

Label label2 = new Label(1, i, rs.getString("category"));

try {

ws.addCell(label1);

ws.addCell(label2);

} catch (RowsExceededException e) {

e.printStackTrace();

} catch (WriteException e) {

e.printStackTrace();

}

i++;

}

try {

//從內(nèi)存中寫入文件中

wwb.write();

//關(guān)閉資源,釋放內(nèi)存

wwb.close();

} catch (IOException e) {

e.printStackTrace();

} catch (WriteException e){

e.printStackTrace();

}

}

}

測(cè)試程序:

Sql2Excel se = new Sql2Excel();

try {

se.init("127.0.0.1","mydabase", "root", "1234");

ResultSet rs = se.getResultSet("select id,category from xx ");

se.writeExcel(rs, new File("/root/sql2excel.xls"));

se.close();

} catch (ClassNotFoundException e) {

e.printStackTrace();

} catch (SQLException e) {

e.printStackTrace();

}

java 生成PDF表格

實(shí)現(xiàn)代碼如下:

package com.qhdstar.java.pdf;

import java.awt.Color;

import java.io.FileOutputStream;

import com.lowagie.text.Chapter;

import com.lowagie.text.Document;

import com.lowagie.text.Font;

import com.lowagie.text.FontFactory;

import com.lowagie.text.PageSize;

import com.lowagie.text.Paragraph;

import com.lowagie.text.Section;

import com.lowagie.text.pdf.PdfWriter;

/**

* 描述:TODO 【JAVA生成PDF】

*

*

* @title GeneratePDF

* @version V1.0

*/

public class GeneratePDF {

public static void main(String[] args) {

//調(diào)用第一個(gè)方法,向C盤生成一個(gè)名字為ITextTest.pdf 的文件

try {

writeSimplePdf();

}

catch (Exception e) { e.printStackTrace(); }

//調(diào)用第二個(gè)方法,向C盤名字為ITextTest.pdf的文件,添加章節(jié)。

try {

writeCharpter();

}

catch (Exception e) { e.printStackTrace(); }

}

public static void writeSimplePdf() throws Exception {

// 1.新建document對(duì)象

// 第一個(gè)參數(shù)是頁面大小。接下來的參數(shù)分別是左、右、上和下頁邊距。

Document document = new Document(PageSize.A4, 50, 50, 50, 50);

// 2.建立一個(gè)書寫器(Writer)與document對(duì)象關(guān)聯(lián),通過書寫器(Writer)可以將文檔寫入到磁盤中。

// 創(chuàng)建 PdfWriter 對(duì)象 第一個(gè)參數(shù)是對(duì)文檔對(duì)象的引用,第二個(gè)參數(shù)是文件的實(shí)際名稱,在該名稱中還會(huì)給出其輸出路徑。

PdfWriter writer = PdfWriter.getInstance(document, new FileOutputStream("C:\\ITextTest.pdf"));

// 3.打開文檔

document.open();

// 4.向文檔中添加內(nèi)容

// 通過 com.lowagie.text.Paragraph 來添加文本。可以用文本及其默認(rèn)的字體、顏色、大小等等設(shè)置來創(chuàng)建一個(gè)默認(rèn)段落

document.add(new Paragraph("First page of the document."));

document.add(new Paragraph("Some more text on the first page with different color and font type.", FontFactory.getFont(FontFactory.COURIER, 14, Font.BOLD, new Color(255, 150, 200))));

// 5.關(guān)閉文檔

document.close();

}

/**

* 添加含有章節(jié)的pdf文件

*

* @throws Exception

*/

public static void writeCharpter() throws Exception {

// 新建document對(duì)象 第一個(gè)參數(shù)是頁面大小。接下來的參數(shù)分別是左、右、上和下頁邊距。

Document document = new Document(PageSize.A4, 20, 20, 20, 20);

// 建立一個(gè)書寫器(Writer)與document對(duì)象關(guān)聯(lián),通過書寫器(Writer)可以將文檔寫入到磁盤中。

PdfWriter writer = PdfWriter.getInstance(document, new FileOutputStream("c:\\ITextTest.pdf"));

// 打開文件

document.open();

// 標(biāo)題

document.addTitle("Hello mingri example");

// 作者

document.addAuthor("wolf");

// 主題

document.addSubject("This example explains how to add metadata.");

document.addKeywords("iText, Hello mingri");

document.addCreator("My program using iText");

// document.newPage();

// 向文檔中添加內(nèi)容

document.add(new Paragraph("\n"));

document.add(new Paragraph("\n"));

document.add(new Paragraph("\n"));

document.add(new Paragraph("\n"));

document.add(new Paragraph("\n"));

document.add(new Paragraph("First page of the document."));

document.add(new Paragraph("First page of the document."));

document.add(new Paragraph("First page of the document."));

document.add(new Paragraph("First page of the document."));

document.add(new Paragraph("Some more text on the first page with different color and font type.", FontFactory.getFont(FontFactory.defaultEncoding, 10, Font.BOLD, new Color(0, 0, 0))));

Paragraph title1 = new Paragraph("Chapter 1", FontFactory.getFont(FontFactory.HELVETICA, 18, Font.BOLDITALIC, new Color(0, 0, 255)));

// 新建章節(jié)

Chapter chapter1 = new Chapter(title1, 1);

chapter1.setNumberDepth(0);

Paragraph title11 = new Paragraph("This is Section 1 in Chapter 1", FontFactory.getFont(FontFactory.HELVETICA, 16, Font.BOLD, new Color(255, 0, 0)));

Section section1 = chapter1.addSection(title11);

Paragraph someSectionText = new Paragraph("This text comes as part of section 1 of chapter 1.");

section1.add(someSectionText);

someSectionText = new Paragraph("Following is a 3 X 2 table.");

section1.add(someSectionText);

document.add(chapter1);

// 關(guān)閉文檔

document.close();

}

}

java中輸入輸出流如何把數(shù)據(jù)輸出為Excel表格形式

實(shí)現(xiàn)代碼如下:

import org.apache.poi.hssf.usermodel.*;

import java.io.FileOutputStream;

import java.io.IOException;

publicclass CreateCells

{

publicstaticvoid main(String[] args)

throws IOException

{

HSSFWorkbook wb = new HSSFWorkbook();//建立新HSSFWorkbook對(duì)象

HSSFSheet sheet = wb.createSheet("new sheet");//建立新的sheet對(duì)象

// Create a row and put some cells in it. Rows are 0 based.

HSSFRow row = sheet.createRow((short)0);//建立新行

// Create a cell and put a value in it.

HSSFCell cell = row.createCell((short)0);//建立新cell

cell.setCellValue(1);//設(shè)置cell的整數(shù)類型的值

// Or do it on one line.

row.createCell((short)1).setCellValue(1.2);//設(shè)置cell浮點(diǎn)類型的值

row.createCell((short)2).setCellValue("test");//設(shè)置cell字符類型的值

row.createCell((short)3).setCellValue(true);//設(shè)置cell布爾類型的值

HSSFCellStyle cellStyle = wb.createCellStyle();//建立新的cell樣式

cellStyle.setDataFormat(HSSFDataFormat.getFormat("m/d/yy h:mm"));//設(shè)置cell樣式為定制的日期格式

HSSFCell dCell =row.createCell((short)4);

dCell.setCellValue(new Date());//設(shè)置cell為日期類型的值

dCell.setCellStyle(cellStyle); //設(shè)置該cell日期的顯示格式

HSSFCell csCell =row.createCell((short)5);

csCell.setEncoding(HSSFCell.ENCODING_UTF_16);//設(shè)置cell編碼解決中文高位字節(jié)截?cái)?/p>

csCell.setCellValue("中文測(cè)試_Chinese Words Test");//設(shè)置中西文結(jié)合字符串

row.createCell((short)6).setCellType(HSSFCell.CELL_TYPE_ERROR);//建立錯(cuò)誤cell

// Write the output to a file

FileOutputStream fileOut = new FileOutputStream("workbook.xls");

wb.write(fileOut);

fileOut.close();

}

}

Java是由Sun Microsystems公司推出的Java面向?qū)ο蟪绦蛟O(shè)計(jì)語言(以下簡稱Java語言)和Java平臺(tái)的總稱。由James Gosling和同事們共同研發(fā),并在1995年正式推出。Java最初被稱為Oak,是1991年為消費(fèi)類電子產(chǎn)品的嵌入式芯片而設(shè)計(jì)的。1995年更名為Java,并重新設(shè)計(jì)用于開發(fā)Internet應(yīng)用程序。

用Java實(shí)現(xiàn)的HotJava瀏覽器(支持Java applet)顯示了Java的魅力:跨平臺(tái)、動(dòng)態(tài)Web、Internet計(jì)算。從此,Java被廣泛接受并推動(dòng)了Web的迅速發(fā)展,常用的瀏覽器均支持Javaapplet。另一方面,Java技術(shù)也不斷更新。Java自面世后就非常流行,發(fā)展迅速,對(duì)C++語言形成有力沖擊。在全球云計(jì)算和移動(dòng)互聯(lián)網(wǎng)的產(chǎn)業(yè)環(huán)境下,Java更具備了顯著優(yōu)勢(shì)和廣闊前景。2010年Oracle公司收購Sun Microsystems。

用java編寫一個(gè)創(chuàng)建數(shù)據(jù)庫和表的程序的代碼怎么寫

import?java.sql.*;

public?class?Test

{

public?static?void?main(String[]?args)?throws?Exception

{

Class.forName("com.mysql.jdbc.Driver");

//一開始必須填一個(gè)已經(jīng)存在的數(shù)據(jù)庫

String?url?=?"jdbc:mysql://localhost:3306/test?useUnicode=truecharacterEncoding=utf-8";????

Connection?conn?=?DriverManager.getConnection(url,?"root",?"123456");

Statement?stat?=?conn.createStatement();

//創(chuàng)建數(shù)據(jù)庫hello

stat.executeUpdate("create?database?hello");

//打開創(chuàng)建的數(shù)據(jù)庫

stat.close();

conn.close();

url?=?"jdbc:mysql://localhost:3306/hello?useUnicode=truecharacterEncoding=utf-8";

conn?=?DriverManager.getConnection(url,?"root",?"123456");

stat?=?conn.createStatement();

//創(chuàng)建表test

stat.executeUpdate("create?table?test(id?int,?name?varchar(80))");

//添加數(shù)據(jù)

stat.executeUpdate("insert?into?test?values(1,?'張三')");

stat.executeUpdate("insert?into?test?values(2,?'李四')");

//查詢數(shù)據(jù)

ResultSet?result?=?stat.executeQuery("select?*?from?test");

while?(result.next())

{

System.out.println(result.getInt("id")?+?"?"?+?result.getString("name"));

}

//關(guān)閉數(shù)據(jù)庫

result.close();

stat.close();

conn.close();

}

}


分享文章:java生成表格代碼 java 生成excel表格
文章分享:http://weahome.cn/article/ddsosej.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部