Why calling to Java class methods from MATLAB gives undefined variable error in R2015b
4 ビュー (過去 30 日間)
古いコメントを表示
MathWorks Support Team
2015 年 10 月 6 日
回答済み: MathWorks Support Team
2015 年 10 月 6 日
I am trying to call 'getDefaultToolkit.getSystemClipboard()' method from MATLAB after importing the required libraries:
>> import java.awt.Toolkit.*
>> cb = getDefaultToolkit.getSystemClipboard();
However, this gives the following error in R2015b:
(This issue happens only in R2015b, the method runs without any error in R2015a and R2014a.)
Undefined variable "getDefaultToolkit" or class "getDefaultToolkit.getSystemClipboard".
Why is this happening?
採用された回答
MathWorks Support Team
2015 年 10 月 6 日
You can only import classes, not methods. Try this instead:
>> import java.awt.Toolkit
>> cb = Toolkit.getDefaultToolkit.getSystemClipboard();
Calling of static methods without qualifying the class (prefixing the method with the class name followed by a dot) in previous versions may have worked but this is neither intentional, nor supported.
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
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!