private String readHelpText(String filename)
{
try
{
FileConnection fc = (FileConnection) Connector.open( filename, Connector.READ);
InputStream is = fc.openDataInputStream();
StringBuffer sb = new StringBuffer();
int chr;
// Read until the end of the stream
while ((chr = is.read()) != -1)
sb.append((char) chr);