exception - How to quickly capture the error point of the exception stack information thrown by Java?
过去多啦不再A梦
过去多啦不再A梦 2017-06-30 09:53:57
0
2
996

Do you have any good methods to quickly locate abnormal information?

Caused By of java: Is the following exception the point of error?

过去多啦不再A梦
过去多啦不再A梦

reply all (2)
黄舟

My habit is: from top to bottom, look for the first class or method written by myself.

    淡淡烟草味

    Java's exception stack is from the inside out, which means that the top one is the point where the exception is thrown. So just watch the first one. Generally, the exception name will be written first, followed by the exception content, for example:
    java.lang.NullPointerException: your variable is null.
    at com.kris.test.Test.main() 26 line.
    ....

    So just look at the first one above.

      Latest Downloads
      More>
      Web Effects
      Website Source Code
      Website Materials
      Front End Template
      About us Disclaimer Sitemap
      php.cn:Public welfare online PHP training,Help PHP learners grow quickly!