use of com.ibm.dtfj.java.JavaVMOption in project openj9 by eclipse.
the class InfoProcCommand method printCommandLine.
private void printCommandLine() {
ImageProcess ip = ctx.getProcess();
out.print("\t Command line:\n\t ");
try {
String commandLine = ip.getCommandLine();
if (null == commandLine)
out.print("<null>");
else
out.print(commandLine);
} catch (CorruptDataException e) {
out.print(Exceptions.getCorruptDataExceptionString());
} catch (DataUnavailable e) {
out.print("Could not determine command line");
}
out.println();
out.println();
// Print the VM initialization options, similar to javacore.
try {
JavaVMInitArgs args = ctx.getRuntime().getJavaVMInitArgs();
if (args != null) {
out.print("\t Java VM init options: ");
Iterator<?> opts = args.getOptions();
while (opts.hasNext()) {
out.println();
Object obj = opts.next();
if (obj instanceof JavaVMOption) {
JavaVMOption opt = (JavaVMOption) obj;
out.print("\t " + opt.getOptionString());
if (opt.getExtraInfo().getAddress() != 0) {
out.print(" " + Utils.toHex(opt.getExtraInfo()));
}
}
}
} else {
out.print(Exceptions.getDataUnavailableString());
}
} catch (Exception cde) {
// in the event of an exception getting the VM init options, just print the original message
out.print(Exceptions.getDataUnavailableString());
}
out.print("\n");
}
Aggregations