我有一個textarea應該顯示.cfg文件的內容。我的問題是,當我運行螢火蟲並檢查textarea時,我看到了應該出現的元素。否則我的頁面會顯示第n個。textarea不顯示Java EE和HTML
字符串fileControllerF3 = getFileConfigurationF3(NULL);
vVelocityContext.put("fileControllerF3", fileControllerF3);
affichePage(vNomdePage, vContext, pRequest, pResponse,
vVelocityContext, Constantes.EC_ADM_FICHIER_CONFIG_F3);
return null;
}
private String getFileConfigurationF3(File fileF3) throws IOException {
StringBuffer contents = new StringBuffer();
try {
BufferedReader input = new BufferedReader(new FileReader("d:/transcoF3.cfg"));
try {
String line = null;
while ((line = input.readLine()) != null){
contents.append(line);
contents.append(System.getProperty("line.separator"));
}
}
finally {
input.close();
}
}
catch (IOException ex){
ex.printStackTrace();
}
return contents.toString();
}