Get your own customer support community
 

Running a top10 finder program on the ics machines

We have a parser to find the top 10 df's in our output file. We need help getting it to run on one of the ics machines because we won't be able to download the 4gb+ file from the 500k run.

Right now I attempt running:
java -jar assignment06.jar answer.txt output.txt

or

java -jar assignment06.jar parser.Main answer.txt output.txt

where parser.Main is where my main class is, and answer.txt is the input, the results of our 30k run.

We get the same error for both jar commands:

Exception in thread "main" java.lang.NoClassDefFoundError: parser.AnswerParser
at java.lang.Class.initializeClass(libgcj.so.7rh)
at parser.Main.main(Main.java:11)
Caused by: java.lang.VerifyError: verification failed at PC 16 in parser.AnswerParser:parseText(()V): incompatible type on stack
at java.lang.Class.initializeClass(libgcj.so.7rh)
...1 more

AnswerParser is a class in our source code package that does most of the dirty work.

Any help would be appreciated, thanks.

-Lance
 
sad I’m confused
Inappropriate?
2 people have this question

User_default_medium