Properties prop = new Properties();
prop.setProperty("file.resource.loader.class", "org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader");
prop.setProperty(Velocity.ENCODING_DEFAULT, "UTF-8");
prop.setProperty(Velocity.INPUT_ENCODING, "UTF-8");
prop.setProperty(Velocity.OUTPUT_ENCODING, "UTF-8");
Velocity.init(prop);
//加载配置
Properties properties = new Properties();
properties.load(Test.class.getClassLoader().getResourceAsStream("velocity.properties"));
Velocity.init(properties);
#指定输入编码格式
input.encoding=UTF-8
#自定velocity的servlet向浏览器输出内容的编码
default.contentType=text/html;charset=UTF-8
#指定输出编码格式
output.encoding=UTF-8
Properties properties = new Properties();
properties.setProperty(VelocityEngine.FILE_RESOURCE_LOADER_PATH, "d://");
Velocity.init(properties);
版权说明 : 本文为转载文章, 版权归原作者所有 版权申明
原文链接 : https://blog.csdn.net/weixin_37264997/article/details/84666533
内容来源于网络,如有侵权,请联系作者删除!