How to use java class that I made in matlab?
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
JINSOL.KIM
el 16 de Nov. de 2015
Comentada: Kirby Fears
el 17 de Nov. de 2015
How to use java class that I made in matlab?
I made a package. So, I want to use it in the MATLAB. But I can't do it.
ex) import java.lang.String, which is possible.
But the class that I made is unaccessible. How can I import mine?
or Where should I save my package?
please help me...
1 comentario
Adam
el 16 de Nov. de 2015
As far as I am aware it should simply be on your path and compiled into .class (I think) files.
Respuesta aceptada
Kirby Fears
el 16 de Nov. de 2015
Editada: Kirby Fears
el 16 de Nov. de 2015
Matlab has a java session that will only see your package if it's on that session's class path. You'll be able to import your package after adding it to the class path using javaaddpath() in Matlab. For example:
filepath = 'C:/mypackage.jar'
javaaddpath(filepath);
import mypackage.Class1; % imports Class 1 within mypackage
Hope this helps.
2 comentarios
Kirby Fears
el 17 de Nov. de 2015
Your classname is "Vector2", not "Vetor2". Does import work when you correct the spelling?
Más respuestas (0)
Ver también
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!