Modifying the dynamic Java classpath when Java objects are loaded
5 次查看(过去 30 天)
显示 更早的评论
I have a problem updating MATLAB's dynamic Java classpath when there are variables in the workspace that point to Java objects whose classes are on the dynamic classpath.
I have two Java test classes matlabtest.Test1 and matlabtest.Test2:
>> ls java1\matlabtest\
. .. Test1.class
>> ls java2\matlabtest\
. .. Test2.class
Adding the first directory to the classpath and instantiating matlabtest.Test1 is not a problem:
>> javaaddpath('java1')
>> test1 = matlabtest.Test1()
test1 =
matlabtest.Test1@606032
However, now adding the second directory and instantiating matlabtest.Test2 does not work:
>> javaaddpath('java2')
Warning: Objects of matlabtest/Test1 class exist - not clearing java
> In javaclasspath>doclear at 379
In javaclasspath>local_javapath at 197
In javaclasspath at 119
In javaaddpath at 69
>> test2 = matlabtest.Test2()
??? Undefined variable "matlabtest" or class "matlabtest.Test2".
A workaround:
>> clear test1;
>> clear java;
>> test2 = matlabtest.Test2()
test2 =
matlabtest.Test2@fcc070
However, this workaround is not possible in my case (the relevant objects belong to another product and I cannot simply clear them without upsetting my users). I also cannot MATLAB's static Java classpath (the exact directories are only known at runtime).
So: How can I create Java objects from truly dynamic locations?
0 个评论
回答(1 个)
Jacob Halbrooks
2012-3-16
Steve Lord answered a similar question on the MATLAB Newsgroup. I think his answer also applies to your question. Here is what he wrote:
When you call JAVAADDPATH, it calls CLEAR with the flag 'java' as part of its execution.
As documented on the reference page for CLEAR, "clear java" behaves like "clear all" in that it clears all variables from the base workspace.
If you want to recover those variables you need to either SAVE them before calling JAVAADDPATH and LOAD them afterwards or reexecute the code that generated those variables.
2 个评论
Jacob Halbrooks
2012-3-16
I think that is all correct; you ultimately need to clear your existing Java variables to add a new Java path. As a result, you need to follow one of the work-arounds suggested by Steve to recover those variables.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Call Java from MATLAB 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!