// Dump System Properties.
try
{
File tempFile = File.createTempFile(PREFIX, SUFFIX);
IDataSetViewer dest = new DataSetViewerTextFileDestination(tempFile);
dest.show(new HashtableDataSet(System.getProperties()));
files.add(tempFile);
//i18n[DumpApplicationCommand.title.systemprops=System Properties]
titles.add(s_stringMgr.getString("DumpApplicationCommand.title.systemprops"));
}
catch (Throwable th)