/// <exception cref="System.IO.IOException"/> private static string GetJobSummary(FileContext fc, Path path) { Path qPath = fc.MakeQualified(path); FSDataInputStream @in = fc.Open(qPath); string jobSummaryString = @in.ReadUTF(); @in.Close(); return(jobSummaryString); }