>  기사  >  백엔드 개발  >  속도 적용 예 10---파일로 출력

속도 적용 예 10---파일로 출력

黄舟
黄舟원래의
2017-01-17 11:05:571341검색

velocity第10个应用例子---输出到文件

//2 Create a Context object

VelocityContext context = newVelocityContext();

//3 Add you data object to this context

context.put("title", "银联电子");

context.put("body", "这是内容"); 

//4 Choose a template

Template template =Velocity.getTemplate("file.vm");

//创建文件

File saveFile = newFile("G:\\workspace\\zjq\\velocity\\WebRoot\\page\\test.html");

//获得它的父类文件,如果不存在,就创建

if(!saveFile.getParentFile().exists()) {


saveFile.getParentFile().mkdirs();

}

//创建文件输出流

FileOutputStream outStream = newFileOutputStream(saveFile);

//因为模板整合的时候,需要提供一个Writer,所以创建一个Writer

OutputStreamWriter writer = newOutputStreamWriter(outStream);

//创建一个缓冲流

BufferedWriter bufferWriter = newBufferedWriter(writer);



//5 Merge the template and you data toproduce the output

template.merge(context, bufferWriter);

bufferWriter.flush();//强制刷新

outStream.close();

bufferWriter.close();

file.vm

<!DOCTYPE
html>

<html>

<head>

<meta
charset="UTF-8">

<title>$title</title>

</head>

<body>

$body

</body>

</html>

以上就是velocity,输出到文件的内容,更多相关内容请关注PHP中文网(www.php.cn)!


성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.