public static String readFileAsString( String szFileName, String szEncoder ) throws Exception {
InputStream theInputStream = new BufferedInputStream( new FileInputStream( szFileName ) );
byte[] theData = new byte[theInputStream.available()];
theInputStream.read(data);
theInputStream.close();
return new String(theData, szEncoder);
}
понедельник, 3 мая 2010 г.
JSE: Прочитать файл в строку
Подписаться на:
Комментарии к сообщению (Atom)
Комментариев нет:
Отправить комментарий