一、gradle的helloworld第乙個程式
1、按win+r會彈出執行對話方塊,然後輸入powershell命令如下圖
}3、在powershell視窗中,進入到gradledemo資料夾中,然後執行如下命令就會輸出 hello world:
distributionpath 相對於distributionbase的解壓後的gradle壓縮包的路徑
zipstorebase 同distributionbase,只不過是存放zip壓縮包的
zipstorepath 同distributionpath,只不過是存放zip壓縮包的
task hello
} gradleversion =
'4.4'
archivebase =
'gradle_user_home'
archivepath =
distributionbase =
'gradle_user_home'
distributionpath =
distributionurl = distributionurl.
replace
("bin"
,"all")}
task hello1
編譯結果:
1、日誌級別
error 錯誤訊息
quiet 重要訊息
warning 警告訊息
lifecycle 進度訊息
info 資訊訊息
debug 除錯資訊
gradle -q tasks 輸出quiet級別及其之上的日誌資訊
gradle -i tasks 輸出info級別及其之上的日誌資訊
println'輸出一段日誌資訊'
無選項 lifecycle及其更高階別
-q或者 –quiet quiet及其更高階別
-i 或者 –info info及其更高階別
-d or –debug debug及其更高階別,這一般會輸出所有日誌
2、內建的logger更靈活的控制輸出不同級別的日誌資訊
logger.
quiet
('quiet日誌資訊.'
)logger.
error
('error日誌資訊.'
)logger.
warn
('warn日誌資訊.'
)logger.
lifecycle
('lifecycle日誌資訊.'
)logger.
info
('info日誌資訊.'
)logger.
debug
('debug日誌資訊.'
)
3、輸出錯誤堆疊資訊
-s 或者 –stacktrace 輸出關鍵性的堆疊資訊
-s 或者–full-stacktrace 輸出全部堆疊資訊
菜鳥Linux vim下的HelloWorld
極簡,之前聽人講後,發現vim真的像神器一樣,想一想,當你操作熟練,不用用到滑鼠和右鍵盤區域的方向鍵時,那你編碼的速度是提公升了好多倍!linux啟動vim,開啟終端,輸入vi回車,輸入i。其實這是我自己好奇在實驗室的雙系統玩玩而已。新建乙個檔案後,敲入最經典的helloworld 儲存為hello...
StrutsII學習筆記 HelloWorld
配置myeclipse 7.5 struts.xml檔案拷貝到src檔案下 配置如下 hello.jsp web.xml增加過濾器 struts2 org.apache.struts2.dispatcher.ng.filter.strutsprepareandexecutefilter 新增inde...
Qt編寫OpenMP程式 HelloWorld
本程式是在ubuntu linux環境下編寫成的。這裡包括c 語言程式和c語言程式,兩者在qt專案設定引數上略有不同,需要注意。openmp提供並行描述,可以充分使用計算機系統的cpu資源。step1.建立qt的c 專案,專案檔案如下 config console c 11 config qt qm...