0

我有一个 textarea 应该显示 .cfg 文件的内容。我的问题是当我运行 firebug 并检查 textarea 时,我看到了应该存在的元素。否则我的页面显示第 n 个。

字符串 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();

}
4

1 回答 1

0

将文本放在<textarea>and</textarea>标记之间,而不是value属性中。

于 2013-07-01T10:20:51.747 回答