y2p
y2p

Reputation: 4931

Unknown Java Result Message

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 had not completed. So I stop it and got the following message.

`Java Result: 2147483647`

What does it mean? Thanks

Upvotes: 0

Views: 607

Answers (1)

Brian Roach
Brian Roach

Reputation: 76888

It's the exit code from the (JVM) process. Specifically, it's the one you'll get when you kill it.

Upvotes: 3

Related Questions