Matlab compiler 2012b: why is imported java class name not recognized?

1 visualización (últimos 30 días)
I'm using r2012b with MATLAB compiler version 4.18.
Running the following script...
import java.util.HashMap
a1 = java.util.HashMap()
a2 = HashMap()
from the MATLAB environment produces expected results, i.e.:
a1 =
{}
a2 =
{}
However, if I compile the same code and attempt to run it, I get the following error:
a1 =
{}
Undefined function or variable 'HashMap'.
Error in test1 (line 4)
Looks like we have to specify full class names for the compiled code to work, which is a problem as we can't simply compile our existing working MATLAB code without modifying it first.
Note that I'm seeing the same with other java build-in classes (not only HashMap) as well as all other (user-defined) classes I've tried. Calling a static java method gives a similar error in the compiled code only, i.e.:
Undefined variable "Collections" or class "Collections.max".
Error in test1 (line 11)
  2 comentarios
Walter Roberson
Walter Roberson el 10 de Jun. de 2013
What I would check is what path is used (interactively) to resolve java "import", and then check in the compiled executable what the path is there and whether the jar is in one of the directories it lists. Are you adding the .jar to the deployment somehow?
Sergey Fein
Sergey Fein el 12 de Jun. de 2013
Java paths are setup correctly. This is evident from the fact that the statement "a1 = java.util.HashMap()" works fine.

Iniciar sesión para comentar.

Respuesta aceptada

Sergey Fein
Sergey Fein el 13 de Jun. de 2013
I got a response from MathWorks support. Basically, importing java classes and using class names is not supported in scripts (but is supported in functions). There are 2 solutions:
1. Use full class names
2. Put your code into a separate matlab function, i.e.:
%%%BEGIN CODE%%%
function x = foo()
import java.lang.Math;
x = Math.round(10.12);
%%%END CODE%%%

Más respuestas (0)

Categorías

Más información sobre Java Package Integration en Help Center y File Exchange.

Productos

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by