Javaaddpath to files not in Java folder

2 Ansichten (letzte 30 Tage)
Anke Kügler
Anke Kügler am 20 Mai 2016
Beantwortet: Elias Gule am 20 Mai 2016
Hi,
I need to add several java files (POI library) in order for my code to work. If I do
javaaddpath('poi_library/poi-3.8-20120326.jar');
with the files being in the java folder in Matlab, it works perfectly fine.
However, I would like to keep the library close to my code, as I need to send it to other people eventually and it seems easier to have it with the code than have people need to copy everything to the java folder.
However, if I specify the path within my folder, it returns an "Invalid file or directoy" warning. It does show the correct path, though.
javaaddpath('folder_name/poi_library/poi-3.8-20120326.jar');
Warning: Invalid file or directory
'/Users/Anke/Documents/MATLAB/folder_name/poi_library/poi-3.8-20120326.jar'.
Does the javaaddpath only work with files in the MATLAB java folder or what am I doing wrong?
Thank you very much.
Anke

Antworten (1)

Elias Gule
Elias Gule am 20 Mai 2016
Try supplying the full filepath to the javaaddpath function. Something like
poi_dir = "C:/JavaLibs";
poi_lib = "poi_library/poi-3.8-20120326.jar";
javaaddpath(fullfile(poi_dir,poi_lib));

Kategorien

Mehr zu Call Java from MATLAB finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by