// codepage used to encode the character set in this file. We set up
// an input stream reader using the appropriate character set, and
// create a new tokenizer to read from this Reader instance.
//
InputStreamReader reader = new InputStreamReader(bis, m_projectFile.getFileCreationRecord().getCodePage().getCharset());
tk = new ReaderTokenizer(reader);
tk.setDelimiter(m_delimiter);
//
// Read the remainder of the records
//