我試圖用編程方式構建使用相同css的html頁面。爲了做到這一點,我正在創建必要的目錄和一個css文件。從本地包寫入CSS的Java應用程序
如下圖爲我的CSS文件中我的包「資源」,我希望把它寫一個本地副本,當我調用該方法writeCss
這是該方法的樣子:
private void writeCss(){
try {
BufferedWriter out = new BufferedWriter(new FileWriter("new_project/css/style.css"));
//take the style.css from the package resources
//write the css to a local file
out.write("");
out.close();
} catch (IOException e) {}
}
我首先想到的只是整個CSS代碼複製並粘貼到out.write("")
但代碼爲緩衝區太長。
請建議。
的資源必須在網頁文件夾級別,而不是源代碼。 – 2013-03-03 22:27:09