JavaExe wraps a Java program into a native Windows executable.
Questions tagged [javaexe]
11 questions
2
votes
2 answers
Run java application without installing the java on target machine
I have created a Java application and made an installer for various platform. It works fine with me, but when it comes to the other machine, it requires Java to be installed on the target machine to run the Java application. For the Windows…

Ketan Sachan
- 95
- 7
2
votes
1 answer
javaexe based program does not run normally on Windows 8.1
I created a program using javaexe, a wrapper for Java programs that allows them to be launched by an exe file. This program contains a service part, a taskbar part (they send messages one to another). The program purpose is to send SMS and the list…

lolveley
- 1,659
- 2
- 18
- 34
1
vote
0 answers
How to open command prompt and run series of commands in it all by using Java Code or Java Application
I have searched alot found some similar questions and answers too on StackOverflow but nothing worked.
I'm creating an application in Java where I need to open command prompt and run series of lots of commands in that using Java code itself.
I am…

Abhi
- 1,080
- 1
- 7
- 21
1
vote
1 answer
Make java setup for clients
I made software in java Netbeans. I have use small database that is in ms access database.
Now I want to make it for client. So, please help me for make setup that is embed with database.
If it is possible to make jar with database…

parik dhakan
- 787
- 4
- 19
0
votes
1 answer
How to Run a java compiled file from a package in the Windows Command Prompt?
How to Run a java compiled file from a package in the Windows Command Prompt?
D:\eclipse-workspace-ghj2\ExecJava\src\pkg>javac Manager_1.java
D:\eclipse-workspace-ghj2\ExecJava\src\pkg>java pkg.Manager_1
Error: Could not find or load main class…
user7208250
0
votes
2 answers
Error occurred when running with Windows power shell. A JNI error has occurred, please check your installation and try again
I am getting "A JNI error has occurred, please check your installation and try again" error Whenever I'm running my java jar using "java -jar filename.jar" command with windows power shell. It works fine whenever I opens it with double click.
How…

Kumar Anil Chaurasiya
- 341
- 2
- 13
0
votes
1 answer
Batch file creation to run executable jar file with external library jar file
I developed simple java project and want to run this project using the batch file. how to include the external jar file in the batch file in order run the java project successfully.
Project Structure is given below,
Click here to find the Project…

S Mugunthan kumar
- 177
- 1
- 2
- 11
0
votes
0 answers
How can I turn my java class into a executable program that takes in parameters?
I have a java class that currently takes in a string of ZPL and sends it to a zebra printer. My goal is to connect an asp page with this java class. I was hoping that I could turn my java class into an executable and use a WshShell object on my asp…
user6461470
0
votes
2 answers
java execution at runtime of exe wrapper in a byte array
I have this code which copy the executable file into byte array.
//winmine.exe
Path path = Paths.get("winmine.exe");
byte[] bin = Files.readAllBytes(path);
I want execute dinamically the array without use the file.
By example I need…

josepmra
- 617
- 9
- 25
0
votes
1 answer
java 7 command usage issue
I am getting:
java version "1.7.0_55" Java(TM) SE
Runtime Environment (build 1.7.0_55-b13)
Java HotSpot(TM) 64-Bit Server VM (build 24.55-b03, mixed mode)
Usage: java [-options] class [args...]
(to execute a class) or java…

despot
- 7,167
- 9
- 44
- 63
-1
votes
1 answer
Creating java executable in eclipse
eclipse exports the project fine as a Jar, but when I double click the project it won't load up.
Can someone please tell me whats wrong. I know that while creating java executable in command line we are supposed to create a manifest file. Is it same…

Learner
- 449
- 1
- 7
- 16