Print at Jun 20, 2026, 8:03:20 AM
Posted by nuvolari at Feb 3, 2018, 9:51:25 PM
FurnitureLibraryEditor-1.22.jar will not run
I am running XP SP3. I have been using SH3D for some time, and followed the prompt to update to 5.7 today.
I spotted the FurnitureLibraryEditor program while on the website.
After some fun and games I found the java program in C:\Program Files\Sweet Home 3D\jre8\bin.I copied the .jar file into the bin directory, and double clicked - nothing happened.
What am I not doing?

Posted by Puybaret at Feb 3, 2018, 11:38:33 PM
Re: FurnitureLibraryEditor-1.22.jar will not run
It's not because you place the .jar file in the same directory as javaw.exe that it will be launched with a double click! If you don't want to separately install Java, you'll have to open a cmd window and run the following command:
"C:\Program Files\Sweet Home 3D\jre8\bin\javaw.exe" -jar "C:\Program Files\Sweet Home 3D\jre8\bin\FurnitureLibraryEditor-1.22.jar"

----------------------------------------
Emmanuel Puybaret, Sweet Home 3D creator

Posted by ahari at May 12, 2026, 7:01:01 PM
Re: FurnitureLibraryEditor-1.22.jar will not run
An old thread, I know, but is there an equivalent on Linux (Mint)?

In other words, can I use somehow call the java that is included in SweetHome 3D (I understood that it's there)? I would prefer not to install an extra Java runtime environment for the FurnitureLibraryEditor.
Or did I misunderstand this?

Posted by Keet at May 13, 2026, 10:25:39 AM
Re: FurnitureLibraryEditor-1.22.jar will not run
Of course although it is possible that the FLE doesn't work correct with that same version. I use different versions for Sweet Home 3D and the FLE.

Bash script to use an installed java runtime:
#!/bin/sh
exec java -jar [path]/FurnitureLibraryEditer-2.2.jar

Bash script to use the Sweet Home 3D runtime:
#!/bin/sh
exec [/sweethome3d-install-directory]/runtime/bin/java -jar [path]/FurnitureLibraryEditer-2.2.jar

Make sure you make the script file executable.
----------------------------------------
Dodecagon.nl
1300+ 3D models, manuals, and projects

Posted by ahari at May 13, 2026, 4:05:33 PM
Re: FurnitureLibraryEditor-1.22.jar will not run
Thank you very much!