我想在我的項目的webapp文件夾中動態添加新的.xhtml
文件。 它只有當我給的完整路徑類似的作品,在webapp文件夾中動態添加.xhtml文件
FileWriter fw = new FileWriter("D:/projects/UIBindingExample/src/main/webapp/pagefour.xhtml");
fw.write("<html>...some code....</html>");
fw.close();
,而不是這個,我要得到它的工作使用文件等的相對路徑,
src/main/webapp/pagefour.xhtml
我試圖this.but其不工作。 我該怎麼辦? 謝謝你。
閱讀本:http://stackoverflow.com/questions/8885201/primeface-update-after-upload/8889096#8889096 – BalusC