Usin third party java classes in compiled gui

1 visualización (últimos 30 días)
David Rising
David Rising el 13 de Dic. de 2016
Comentada: Swarup el 15 de Mayo de 2017
Hello Matlab Community! So I have started using third party java classes inside my gui development which I then compile and distribute internally at my company for others to use. Everything runs fine inside the uncompiled code but the compiled code can't seem to find the appropriate class. In my code I specify the dynamic java path to the folder in which I have placed the class file and am using the '-v1' output from that function to show me which paths are being added. This output doesn't come up in the compiled version. So, to break it down:
1. I have my class in a subdirectory of the main directory where the target file is
2. In my code I use the javaclasspath function to specify this subdirectory (this works in the uncompiled version)
3. In the compiler I have tried -I and specifying the directory and -a and specifying the class file specifically but I always get the same error when I try to start the program: Undefined function 'LookupFieldCellEditor' for input arguments of type 'java.util.Hashtable'. (So now you know which class I am using! :) )
Any thoughts? Does javaclasspath not worked on deployed programs? I haven't found anything in the javaclasspath documentation about using it in deployed applications, but then again, I may have simply overlooked something. Thanks!
  1 comentario
Swarup
Swarup el 15 de Mayo de 2017
Same problem as above. After I used the isdeployed switch but endup getting the same error as mentioned by David.
Any pointers please..
if true
if ~isdeployed
javaaddpath('LookupFieldCellEditor.zip')
else
jpth = 'LookupFieldCellEditor.zip';
javaclasspath(jpth);
end
end

Iniciar sesión para comentar.

Respuestas (0)

Categorías

Más información sobre Call Java from MATLAB en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by