Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Java Exception

Status
Not open for further replies.

fmuquartet

Programmer
Sep 21, 2006
60
US
Can someone help me understand what might be happening here? I have a program that is supposed observer thread dumps as taken from a file and generate a report on its findings, the problem is that it is blowing up with the error below:

DumpScan: Scan VM output for Full Thread Dumps and Analyze them
Version 2.0.2 08-July-2004
In line 17 of file std_server0.out
java.lang.NumberFormatException: For input string: "0.000: [DefNew: 174080"
at java.lang.NumberFormatException.forInputString(Unknown Source)
at java.lang.Integer.parseInt(Unknown Source)
at java.lang.Integer.parseInt(Unknown Source)
at com.sap.support.dumpscan.model.GCTrace.addGCLine(Unknown Source)
at com.sap.support.dumpscan.model.VMModel.addGCLine(Unknown Source)
at com.sap.support.dumpscan.controller.Scanner.scan(Unknown Source)
at com.sap.support.dumpscan.controller.Console.main(Unknown Source)

DumpScan: found 0 ThreadDumps in file std_server0.out
 
Somewhere it is trying to convert the string "0.000: [DefNew: 174080" to an Integer, which of course, it can't do. I couldn't tell you why.


-V
 
It looks like that your program came across a line that contains garbage collection statistics.

Tom
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top