Hi all,
Since the tool for converting excel files to B4XLocalizator has not been maintained for years, it recently stopped working for me completely. No matter which XLSX file I tried (even old Excel 2007 files), the tool kept crashing due to missing POI classes such as:
Code
ThemeDocument$Factory
After some digging it became clear that the POI version bundled with B4J cannot read modern XLSX files that contain themes or styles.
I’ve attached a ZIP file containing the small B4J converter app.
If this helps anyone who is still using B4XLocalizator or maintaining older projects, feel free to improve or extend the tool.
Note: this program was created by Gemini bot
Note2: B4xLocaliser itself works without any problem. https://www.b4x.com/android/forum/threads/b4x-localizator-localize-your-b4x-applications.68751/
Since the tool for converting excel files to B4XLocalizator has not been maintained for years, it recently stopped working for me completely. No matter which XLSX file I tried (even old Excel 2007 files), the tool kept crashing due to missing POI classes such as:
Code
ThemeDocument$Factory
After some digging it became clear that the POI version bundled with B4J cannot read modern XLSX files that contain themes or styles.
✔ Working Solution
The workaround that finally solved it for me:1. Save your Excel file as .csv instead of .xlsx
This gives you a clean, comma‑separated file without themes, styles or XML structures that POI cannot handle.2. Use a small B4J tool to convert the CSV into SQLite
The SQLite database is generated using the same structure that B4XLocalizator expects.I’ve attached a ZIP file containing the small B4J converter app.
⚠ Important Notes
- Make sure to enable the jSQL library in your B4J project.
- Ensure the correct SQLite JDBC driver is present in your Additional Libraries folder.
- The messages in the tool are written in my native language, but they can easily be translated to English if needed.
If this helps anyone who is still using B4XLocalizator or maintaining older projects, feel free to improve or extend the tool.
Note: this program was created by Gemini bot
Note2: B4xLocaliser itself works without any problem. https://www.b4x.com/android/forum/threads/b4x-localizator-localize-your-b4x-applications.68751/
Attachments
Last edited: