『壹』 如何把一個java web程序打包成exe文件,運行在沒有java虛擬機的機器上
java的貌似不能打成exe文件吧。不過可以打成jar文件,然後裡面弄一個具有main函數的程序來執行。具體方法網上很多,書上一般也都有,就不具體說明了
『貳』 誰知道怎麼把java web項目打包成exe可執行文件,要連資料庫一起打包
先打包成jar,然後才能打包成exe的,不能直接打包成exe的
『叄』 如何實現web前端頁面生成exe可執行文件
1、你已經安裝並配置好了 node.js (全局安裝)
2、你已經用 npm 安裝了 electron (全局安裝)
3、你已經寫好了前端網頁(html、css、javascript 這些,或者基於這些的前端框架寫好的網頁)
4、以上三點看不懂的,趕緊去網路。。。
你如果具備了以上的假設,請繼續往下看:
1、找到你的前端網頁項目文件夾,新建 package.json、main.js、index.html 三個文件(註:其中的 index.html 是你的網頁首頁)
你的項目目錄/
├── package.json ├── main.js └── index.html
2、在 package.json 中添加如下內容
{ "name" : "app-name", "version" : "0.1.0", "main" : "main.js" }
3、在 main.js 中添加下面的內容,這個 main.js 文件就是上面 package.json 中的 "main"鍵 的值,所以可根據需要修改
const {app, BrowserWindow} = require('electron') const path = require('path') const url = require('url') // Keep a global reference of the window object, if you don't, the window will // be closed automatically when the JavaScript object is garbage collected. let win function createWindow () { // Create the browser window. win = new BrowserWindow({width: 800, height: 600}) // and load the index.html of the app. win.loadURL(url.format({ pathname: path.join(__dirname, 'index.html'), protocol: 'file:', slashes: true })) // Open the DevTools. // win.webContents.openDevTools() // Emitted when the window is closed. win.on('closed', () => { // Dereference the window object, usually you would store windows // in an array if your app supports multi windows, this is the time // when you should delete the corresponding element. win = null }) } // This method will be called when Electron has finished // initialization and is ready to create browser windows. // Some APIs can only be used after this event occurs. app.on('ready', createWindow) // Quit when all windows are closed. app.on('window-all-closed', () => { // On macOS it is common for applications and their menu bar // to stay active until the user quits explicitly with Cmd + Q if (process.platform !== 'darwin') { app.quit() } }) app.on('activate', () => { // On macOS it's common to re-create a window in the app when the // dock icon is clicked and there are no other windows open. if (win === null) { createWindow() } }) // In this file you can include the rest of your app's specific main process // code. You can also put them in separate files and require them here.
4、如果你的網頁首頁的文件名不是 「index.html」,那麼請在 main.js 中將其中的 'index.html' 修改為你的網頁首頁名
5、打開 DOS,cd 到你的項目目錄(或直接在你的項目目錄下空白的地方 shift+滑鼠右鍵,然後點擊在此處打開命令窗口,這里看不懂的,唉,網路吧少年)
6、在上一步的 DOS 下,輸入 npm install electron-packager -g全局安裝我們的打包神器
npm install electron-packager -g
7、安裝好打包神器後,還是在上一步的 DOS 下,輸入 electron-packager . app --win --out presenterTool --arch=x64 --version 1.4.14 --overwrite --ignore=node_moles 即可開始打包
electron-packager . app --win --out presenterTool --arch=x64 --version 1.4.14 --overwrite --ignore=node_moles
這個命令什麼意思?藍色部分可自行修改:
electron-packager . 可執行文件的文件名 --win --out 打包成的文件夾名 --arch=x64位還是32位 --version版本號 --overwrite --ignore=node_moles
8、打包成功後,會生成一個新的文件夾,點進去,找到 exe 文件,雙擊就可以看到網頁變成了一個桌面應用啦!
以上是最簡單的打包方式,至於怎麼修改窗口大小、菜單欄怎麼加、怎麼調用系統API這些,就給你慢慢去研究Electron了。
『肆』 怎麼把整個java web 程序打包成一個exe文件,包括tomcat和mysql也一同安裝怎麼做或者用什麼工具,謝了
你封裝成exe又怎樣?
安裝完tomcat你還是需要配置的。
『伍』 java web怎麼用軟體打包成exe 安裝文件
把JDK 、tomcat(把生成的WAR包放在webapp下)、資料庫放在一個目錄下
點擊滑鼠反鍵,選中「創建自解壓格式」
點擊「高級選項」卡,彈出頁面有很多選項,點擊「常規」,點擊自解壓項
在彈出頁面上,寫上解壓路徑,這是解壓後默認安裝路徑,要仔細填寫,因為後續的批處理都和此路徑有關系
這一步也是最關鍵的一步,就是怎麼設置JAVA的環境變數,通過批處理把幾個安裝程序聯系在一起「解壓後運行」把剛才寫好的批處理的路徑填寫,這樣就完成了一個基本的,java EXE程序!
『陸』 web項目如何打包啊,如.war或.exe格式的
web 工程打成war包用eclipse的 文件->導出->然後在web中選擇 war file就可以了;
要將java小程序打成.exe文件,可以用JBuilder或使用第三方工具如exe4j等,但一般運行效率要打折扣.但是將web工程打成.exe文件,據我所知,目前不行.
『柒』 怎麼樣把web項目打包成exe文件
我有一個比較另類的方法,就是用VMware ThinApp打包你的工程.單文件,免安裝,可讀寫配置文件.VMware ThinApp V4.0.1 Build 2866 http://www.greendown.cn/soft/13422.html找一個干凈的系統安裝ThinApp,進行系統快照,然後部署你的web環境,如果有需要的話可以寫一個瀏覽器放進去,當然也可以用一些現成的綠色免費瀏覽器(比如世界之窗,遨遊等),或者乾脆寫個批處理調用系統自帶的瀏覽器...這些都完成後即可用ThinApp打包你的整個工程了.