exe

How to make exe files from a node.js app?

我怕爱的太早我们不能终老 提交于 2019-11-26 00:57:09
问题 I have a node app that I wrote, that I run as follows: node.exe app.js inputArg Is there some way I can package this into a .exe by itself? So I can just do something like this? App.exe inputArg I have some way of faking this by using a batch file, so I can do this: App.bat inputArg But this requires that I have all the dependencies and node in that folder, which is not ideal. 回答1: There a few alternatives, both free and commercial. I haven't used any of them but in theory they should work:

How do I create an .exe for a Java program? [duplicate]

坚强是说给别人听的谎言 提交于 2019-11-26 00:48:26
问题 Possible Duplicate: How can I convert my java program to an .exe file ? I\'d like to create a Windows .exe for a Java program. Previously, I\'ve used JEXECreator for this, but it\'s not entirely satisfactory because: The executable sometimes works on the machine on which it was created but not on others. The program is commercial; if you use the trial version, it adds a nag screen to your application. I don\'t need the generated .exe to work if Java is not installed on the target machine (in

How to merge multiple assemblies into one?

人盡茶涼 提交于 2019-11-26 00:32:45
问题 I consuming my service stack using EXE project (startup task for azure application) in that I have copied following service stack\'s DLL & some Azure\'s DLLs in to EXE project. When I build this EXE project then Azure DLLs will be bundled with my EXE but service stack\'s DLL will not be bundled with EXE, because to run my EXE on any machine I need to copy all service stack\'s DLL manually. I have used this service stack\'s dll to use JsonServiceClient client = new JsonServiceClient

Java: export to an .jar file in eclipse

我们两清 提交于 2019-11-25 23:45:03
问题 I\'m trying to export a program in Eclipse to a jar file. In my project I have added some pictures and PDF:s. When I\'m exporting to jar file, it seems that only the main has been compiled and exported. My will is to export everything to a jar file if it\'s possible, because then I want to convert it to an extraditable file, like .exe-file. But how? 回答1: No need for external plugins. In the Export JAR dialog, make sure you select all the necessary resources you want to export. By default,

How can I convert a .py to .exe for Python?

会有一股神秘感。 提交于 2019-11-25 22:49:15
问题 I\'m trying to convert a fairly simple Python program to an executable and couldn\'t find what I was looking for, so I have a few questions (I\'m running Python3.6): The methods of doing this that I have found so far are as follows downloading an old version of Python and using pyinstaller/py2exe setting up a virtual environment in 3.6 that will allow me to do 1. downloading a Python to C++ converter and using that. Here is what I\'ve tried/what problems I\'ve run into. I installed

How can I convert my Java program to an .exe file? [closed]

强颜欢笑 提交于 2019-11-25 21:36:05
问题 If I have a Java source file (*.java) or a class file (*.class), how can I convert it to a .exe file? I also need an installer for my program. 回答1: javapackager The Java Packager tool compiles, packages, and prepares Java and JavaFX applications for distribution. The javapackager command is the command-line version. – Oracle's documentation The javapackager utility ships with the JDK. It can generate .exe files with the -native exe flag, among many other things. WinRun4J WinRun4j is a java

How can I make an EXE file from a Python program? [duplicate]

十年热恋 提交于 2019-11-25 18:47:49
This question already has an answer here: How can I create a directly-executable cross-platform GUI app using Python? 11 answers How to deploy Python to Windows users? 4 answers Create a single executable from a Python project 2 answers I've used several modules to make EXEs for Python, but I'm not sure if I'm doing it right. How should I go about this, and why? Please base your answers on personal experience, and provide references where necessary. Josh Segall Auto PY to EXE - A .py to .exe converter using a simple graphical interface built using Eel and PyInstaller in Python. py2exe is