B4J Question Fix ServerExample in Web Apps Overview Thread

cklester

Well-Known Member
Licensed User
I get the following error in the "Compile & Rapid Debug (Build: Default)" dialog:

B4X:
B4J Version: 8.80
Parsing code.    (0.04s)
    Java Version: 11
Building folders structure.    (0.02s)
Compiling code.    (0.47s)
Compiling layouts code.    (0.00s)
Organizing libraries.    (0.00s)
Compiling generated Java code.    Error
Cannot find: E:\Anywhere Software\B4J\libraries\jxl.jar
 
Upvote 0

Daestrum

Expert
Licensed User
Longtime User
Look at this thread - probably same reason for failed compile
jxl.jar
 
Upvote 0

cklester

Well-Known Member
Licensed User
I saw that, but I don't have a jxl*.* in that directory. I think the reference is old and possibly deprecated, as the new Excel module is jExcel. I'm not sure what is wanting jxl.jar anyway.
 
Upvote 0

aeric

Expert
Licensed User
Longtime User
The online examples project is attached.
The full project depends on a MySQL database (and several other libraries - see post #19).
You can start with the NoMySQL project which doesn't depend on MySQL.

Post #19:
I recommend you to start with the ServerExampleNoMySQL project. It only depends on "core" libraries.

The full project depends on: jExcel, ByteConverter and Encryption library (last two are B4A libraries).
It also depends on the MySQL jdbc driver.

Excel library:
- Download jexcel library: A Java library for reading/writing Excel - Browse /jexcelapi/2.6.12 at SourceForge.net (jexcelapi_2_6_12.zip).
- Open the zip file and copy jxl.jar to the (additional) libraries folder.
 
Last edited:
Upvote 0
Top