前後臺 匯出功能的編寫

2021-10-07 14:47:52 字數 2383 閱讀 4991

>匯出<

/el-button>

然後所對應的方法

doexp()

else

},

後台

controller

/**

* 匯出

*/("/exp"

)public r exp

(sysholidayentity holidayentity)

throws exception

serviceimpl

其實它就是呼叫查詢的方法

/****

* 匯出

* @param pageparam

* @return

*/@override

public pageutils getpageexportdatas

(pagebaseentity pageparam)

需要的配置檔案

excel/sys/holiday-exp.xml

<

?xml version=

"1.0" encoding=

"utf-8"

?>

"excel/sys/holiday-exp.xlsx"

>

<

!-- filltype = auto | cell | string --

>

"節假日管理" trigger=

"openbook.daysales.excel.trigger.holidaytrigger" filltype=

"string"

>

"1" headercount=

"0" name=

"holiday" entity=

"openbook.daysales.modules.entity.sysholidayentity"

>

"_serialnum" position=

"1,1"

/>

"datadate" position=

"1,2"

/>

"week" position=

"1,3"

/>

"datetype" position=

"1,4"

/>

"holidaynote" position=

"1,5"

/>

"vacationnote" position=

"1,6"

/>

<

/listsection>

<

/sheet>

<

/config>

holidaytrigger

所匯出的excel檔案樣式編寫

public

class

holidaytrigger

implements

excelexpbasetrigger

elseif(

"2".

equals

(cdata.

tostring()

))elseif(

"3".

equals

(cdata.

tostring()

))}if

("datadate"

.equals

(cdataname)

&& cdata != null)if(

"week"

.equals

(cdataname));

calendar cal = calendar.

getinstance()

; cal.

settime

(sysholidayentity.

getdatadate()

);// 指示乙個星期中的某天。

int w = cal.

get(calendar.day_of_week)-1

;if(w <0)

w =0;

return weekdays[w];}

return cdata;

}

程序的前後臺排程

1 測試xsnow軟體的安裝執行 2 調整path設定,直接執行xsnow即可執行此軟體 3 在桌面環境啟動xsnow程式,檢視效果 4 程序前後臺排程 5 將xsnow轉入後台執行 6 列出後台執行了哪些程式,並顯示pid 7 將後台的xsnow恢復到前台執行 8 掛起當前的xsnow程式 9 讓...

Linux任務前後臺的切換

後台執行php的話 nohup php php linux任務前後臺的切換 shell支援作用控制,有以下命令實現前後臺切換 1.command 讓程序在後台執行 2.jobs 檢視後台執行的程序 3.fg n 讓後台執行的程序n到前台來 4.bg n 讓程序n到後台去 5.kill n 殺死job...

Linux任務前後臺的切換

linux任務前後臺的切換 shell支援作用控制,有以下命令實現前後臺切換 1.command 讓程序在後台執行 2.jobs 檢視後台執行的程序 3.fg n 讓後台執行的程序n到前台來 4.bg n 讓程序n到後台去 5.kill n 殺死job ps n 為jobs命令檢視到的job編號,不...