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
3
votes
1 answer

JSmooth EXE Compile

I'm creating an exe with JSmooth. It builds fine but then says "Could not find the main class: MyProgram. Program will exit". The .jar file runs great. This is it's manifest file (with a new line at the end): Mainifest-Version: 1.0 Main-Class:…
carget
  • 77
  • 6
3
votes
1 answer

Creating exe from jar file that runs on other computers

I have a simple application consisting of 3 classes which are PercentIdentity.java, GUI.java and Aligner.java I am working with Intellij Idea 11.1.3 (I also tried it with Eclipse) and JRE 1.7. My operating system is Win 7 x64. My program works fine…
Ercument Kisa
  • 168
  • 1
  • 3
  • 12
2
votes
0 answers

Is there a Java Executable Wrapper that reads the classpaths and JavaFX modules from a configuration file?

I'm trying to launch my java program from an executable file that passes all the required parameters like the classpath and the JavaFX modules. I've successfully created executables with tools like Launch4j and JSmooth. The problem is, when the java…
2
votes
0 answers

Create File Association for a Media Player

I had once created a Media Player in Java. Now I want to use it as default Media Player app to open media files. I have succeeded to create file a association so I can open local files. I have created an executable file for the application using…
2
votes
1 answer

How can I use JSmooth or Launch4j for Processing?

I am having a little trouble. See, I completed a processing game and I have it exported. Now I bet you know for Processing on a Windows computer, exporting creates 4 other folders: your Data folder you bin and your lib and your source. So I wanted…
TechWiz77
  • 69
  • 1
  • 1
  • 8
2
votes
3 answers

How to create a .exe for my java program using Jsmooth?

Suppose I had a simple program called Main.class created from eclipse. How would I create an .exe for that program? Does it have to be a .jar to work??? This is what I get when compiling: Starting compilation Scanning skeleton... Loading…
Fryon Alexandra
  • 139
  • 7
  • 19
2
votes
3 answers

JSmooth Java 1.4 or above not found error

I have installed JSmooth. My computer has JDK 1.7 & JRE 1.7. but it says need java 1.4 or above to open & try to download. Why is that ??
Grant
  • 4,413
  • 18
  • 56
  • 82
1
vote
1 answer

Jsmooth icon looks bad

I'm converting an executable jar to an exe with JSmooth. I'm setting an Icon in png for the application. It loads and it's show OK at Jsmooth. Then I convert to exe, and it works, but the icon looks very bad, pixelated. My icon is a 64x64 png with…
Roman Rdgz
  • 12,836
  • 41
  • 131
  • 207
1
vote
1 answer

Using Jsmooth for creating .exe file

I want to create a .exe file of my application. I read many posts in here and I found out the JSmooth is good choice. I am using Windows. I started with reading JSmooth "read me" file. In step 3.4 it says : 3.4 FLTK library FLTK, available at…
Sara
  • 2,308
  • 11
  • 50
  • 76
1
vote
1 answer

String search breaking when wrapping .jar with JSmooth

I've got an oddball problem here. I've got a little java program that filters Minecraft log files to make them easier to read. On each line of these logs, there are usually multiple instances of the character "§", which returns a hex value of…
1
vote
2 answers

Generating a portable .exe file (from a .jar) that will run on Windows

I've created a small Java application that uses GUI and a few of my friends who have Windows have asked me to send it to them. I want to avoid them as many steps as possible regarding installation, etc..., so I'm wondering which would be the best…
1
vote
1 answer

Java to Exe Files

I'm having a hard time figuring how to convert jar files with its libraries into an .exe file. I know how to convert jar files(ONLY) to an .exe file using JSmooth but I don't know how to add its libraries in it. What I'm trying to accomplish is that…
GM-Xile GM-Xile
  • 321
  • 1
  • 8
  • 21
1
vote
2 answers

maven -> ant -> jsmoothgen : How to provide -Djava.awt.headless=true?

I have a situation where we wrap a jar with JSmooth to get an suitable exe file. This has traditionally been built by ant, and as part of our general mavenification the current, short-term solution has been to use maven-antrun-plugin to set a…
Thorbjørn Ravn Andersen
  • 73,784
  • 33
  • 194
  • 347
1
vote
1 answer

Java to exe with referenced selenium libraries

Ive done some research on this but can not seem to figure out how to make a program work if it has referenced libraries. I have a java program with dependencies on the selenium 2.12 libraries and I require making the program into an exe because I…
AlbChu
  • 135
  • 1
  • 2
  • 11
0
votes
2 answers

JSmooth generated exe does not show Splash Screen

I wrap my Java Swing application as an exe using Jsmooth but I can see no way to take advantage of Java 6 splash screen option. I have the following manifest file: Manifest-Version: 1.0 SplashScreen-Image: resources/LOADLOGO.png …
F. Aydemir
  • 2,665
  • 5
  • 40
  • 60
1
2