匯出html 帶自選位址

2021-09-11 01:10:59 字數 1190 閱讀 8086

1.建立需要匯出的html模板,我創的模板是template.html,放到專案web-inf/content下面。

###content###

2.工具類

public class jsptohtml  catch (ioexception e) 

//新建檔案

outputstream out = null;

try else if(stringutils.contains(useragent, "mozilla"))else

response.setheader("content-disposition", "attachment; filename=\"" +

finalfilename + "\"");

system.out.println("共用時:" + ((new date()).gettime() - begindate) + "ms");

writer.write(str);

writer.close();

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

} return true;

}}

3.呼叫

//匯出html

//獲得專案的根路徑

string path = request.getsession().getservletcontext().getrealpath("/");

//將根路徑與模板位址拼接,從而才能找到html模板

string url = path+"web-inf\\content\\template.html";//模板檔案根位址

//標題,對應模板中###title###

string title = "標題";

//內容,對應模板中###context###

string context = "內容";

//匯出的html的名字+時間戳

string filename = "名字"+system.currenttimemillis();

jsptohtml c = new jsptohtml();

c.jsptohtmlfile(url, title, context, filename);

4.完成

廣播資訊帶藍芽位址

gaprole processgapmsg 對gap device init done event的處理。這裡在addr加入到advertising data。case gap device init done event if stat success notify true break 引數設成...

sql server 帶列名匯出至excel

sql語句就用下面的儲存過程 資料匯出excel 匯出查詢中的資料到excel,包含欄位名,檔案為真正的excel檔案 如果檔案不存在,將自動建立檔案 如果表不存在,將自動建立表 基於通用性考慮,僅支援匯出標準資料型別 鄒建 2003.10 呼叫示例 p exporttb sqlstr select...

mysql快速匯出資料(帶列名)

set table name user sample0528 set schema name douyin set output name concat e douyin mysql output table name,txt set cols null select group concat co...