The following appears in the command window. What does it mean?java.lang.NullPointerException
6 次查看(过去 30 天)
显示 更早的评论
What does this mean: java.lang.NullPointerException in red many times.
1 个评论
Walter Roberson
2019-5-16
There are a number of ways that can happen. We would need more information such as operating system and matlab version and what you were doing and whether there are additional messages.
Unfortunately a fair portion of the time the question needs to be sent to Support.
回答(1 个)
Yair Altman
2019-7-9
This is an error that originates from Java code, typically concerning some GUI component that misbehavs or which does not handle some edge-case properly. You need to either adapt the way that you interact with that code (for example, ensure that you don't pass a Null pointer i.e. [] or {} as input argument), or ask the code's developers to handle this edge case.
Note that in a very large number of cases, you can safely ignore such command-window errors unless you see that there is really something wrong (for example, bad GUI rendering etc.). Yes they are indeed ugly and bothersome, but in many cases there are also harmless.
1 个评论
Walter Roberson
2019-7-9
These errors can also occur due to internal MATLAB problems such as corrupted MATLAB installation. Also problems like this can show up if you are using your own JAVA.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Startup and Shutdown 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!