Questions tagged [jsmooth]

JSmooth is a Java Executable Wrapper.

JSmooth is a Java Executable Wrapper. It creates native Windows launchers (standard .exe) for your java applications. It makes java deployment much smoother and user-friendly, as it is able to find any installed Java VM by itself.

See http://jsmooth.sourceforge.net/

30 questions
0
votes
1 answer

Running standard exe from java .jar file on clients computers

I have a program that I want to run as an exe on a clients computer. After I made my program in Java I used Jsmooth to create the exe. The program runs perfectly fine from my own local computer, but when I try running the same program on another…
0
votes
1 answer

Why does an exe file made with java immediately turn off?

I made a jar in eclipse and converted it from jsmooth to exe. The exe is created, but if I double-click it, it turns off immediately. Is my code the problem? public class plz { public static void main(String[] args) { // TODO…
SeHoon
  • 11
  • 3
0
votes
0 answers

Compiling Java Source Files to Native Code

I need to compile a Java Project into native code. The target machine cannot run Java in any way (customer preference). I have perviously successfully compiled the Application to an executable using Launch4J and Jsmooth, respectively. However,…
Brian
  • 11
  • 3
0
votes
0 answers

There is a problem in converting jar to exe (image issue)

I'm making a GUI program with JAVA And I want to show image while program is running It runs well on eclips then I want to convert exe file, so I export the projects as runnable jar and us jsmooth but it doesn't work as an exe file introBackground…
0
votes
2 answers

Issue cleaning at exit

I am working on JAVA with JSmooth. I see at each launching, a tmp JAR is created. Created tmp jar files are approximately 10 Mb. As I quit an executable JAVA application built by JSmooth, the temp jar files remains at each launching. I read the…
cardman
  • 89
  • 3
  • 8
0
votes
1 answer

What is required in order for my clients to use my java programs? (iText)

I'm very new to Java and have been using Eclipse to write/compile code so far, and have downloaded iText in order to perform certain manipulations of PDF files. I'm hoping to convert my .java programs into .exe eventually (with JSmooth) which will…
Mathomatic
  • 899
  • 1
  • 13
  • 38
0
votes
1 answer

JSmooth - After creating exe(using JSmooth) the Runtime.getRuntime() is not working

I have created a small program where I need the install location of a program. I am using this in windows. So I written a small program with the below line which gives the the path of the installed software Process process =…
A Paul
  • 8,113
  • 3
  • 31
  • 61
0
votes
3 answers

Java - NoSuchMethodError on java.io.BufferdReader.lines on other systems

I'm using a small "xml text based database" to store information. While coding and debugging I had no problems with a method I created, but as an exe file(wrapped with jsmooth), it gives me an error: Exception in thread "AWT-EventQueue-0"…
MorkTheOrk
  • 13
  • 2
0
votes
0 answers

How to use JSmooth to convert a .exe back to a jar/.java?

I wrote a java program (using BlueJay, if that's important) that had only one class. I used JSmooth to convert the program into a .exe, and the .exe works great (only when it's in the folder the .java was originally in, but oh well). The problem, it…
0
votes
1 answer

How to generate EXE using JSmooth that will run JVM in the same process as the executable?

I am using JSmooth to generate EXE for my Java application. If I run the executable as administrator, the Java process runs within the same process as the executable. Otherwise it spawns a new javaw process. I would like for the java process to…
Developer
  • 27
  • 1
  • 10
0
votes
1 answer

JSmooth : how to convert jar with JFrame to exe?

I had no problem converting console JAR executable to exe However I am confused how I can convert JAR with JFrame or other GUI options available? What skeleton I have to use? I mean which wrapper I have to use?
iMagur
  • 721
  • 1
  • 6
  • 11
0
votes
1 answer

How to use Java JSmooth to include images in executable file?

Im creating a runnable Jar file from Eclipse for a Java file. The Java file has a combobox that changes the image depending on the selection. Im creating an .exe file for windows using jSmooth. The .exe runs fine and the images change as expected…
Kairan
  • 5,342
  • 27
  • 65
  • 104
0
votes
3 answers

Convert Jar to exe using JSmooth - Could not find main class

I have the JSmooth software in my local system. I am trying to generate my jar file as exe but I am getting error when I click on run the exe it is showing. java virtual machine launcher ---> Could not find main class: MainClass .Program will…
sateesh
  • 1
  • 1
  • 3
-2
votes
1 answer

Converting .jar which uses pictures into .exe

I made a program in Java which uses plenty of pictures(every JButton has one). I exported .jar file from my project and converted it to .exe using JSmooth. When I run .exe, everything works fine on my computer, but on other computers there are no…
-3
votes
2 answers

Converting my first windowed java application to exe. no jar file. JAVA files only

beginner I've searched the entire internet on how to convert java program to exe but all I see is "convert .jar to exe". there is no jar file in my program. My program is coded in java in eclipse IDE how do I convert this program to an independent…
1
2