All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.gitee.qdbp.staticize.publish.OutputPublisher Maven / Gradle / Ivy

There is a newer version: 3.5.18
Show newest version
package com.gitee.qdbp.staticize.publish;

import java.io.IOException;
import java.util.Map;
import com.gitee.qdbp.staticize.common.IContext;
import com.gitee.qdbp.staticize.common.IMetaData;
import com.gitee.qdbp.staticize.common.IWriter;
import com.gitee.qdbp.staticize.exception.TagException;

/**
 * 根据标签数据发布一个页面, 输出到OutputStream
* 不支持多线程
* * @author zhaohuihua * @version 140522 */ public class OutputPublisher extends BasePublisher { /** * 构造函数 * * @param root 根节点 */ public OutputPublisher(IMetaData root) { super(root); } /** * 根据标签数据发布一个页面 * * @param writer 页面输出流 * @throws TagException 标签错误 * @throws IOException 写文件失败 */ public void publish(IWriter writer) throws TagException, IOException { this.publish(null, writer); } /** * 根据标签数据发布一个页面 * * @param preset 预置数据 * @param writer 页面输出流 * @throws TagException 标签错误 * @throws IOException 写文件失败 */ public void publish(Map preset, IWriter writer) throws TagException, IOException { IContext context = new SimpleContext(writer); if (preset != null) { context.preset().putAll(preset); } publish(context); writer.flush(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy