I was running a code to retrieve XML documents from the web and simultaneously parsing them to extract some information. I was doing it for about 5000 documents. After a certain point the code hung up. The process h开发者_如何转开发ad not completed. So I stop it and got the following message.
`Java Result: 2147483647`
What does it mean? Thanks
It's the exit code from the (JVM) process. Specifically, it's the one you'll get when you kill it.
精彩评论