templateutil.java

来自「OBPM是一个开源」· Java 代码 · 共 37 行

JAVA
37
字号
/*
 * Created on 2005-1-22
 *
 * TODO To change the template for this generated file go to
 * Window - Preferences - Java - Code Style - Code Templates
 */
package cn.myapps.core.dynaform.form.ejb;

import org.htmlparser.Parser;

/**
 * @author ZhouTY
 *
 * TODO To change the template for this generated type comment go to
 * Window - Preferences - Java - Code Style - Code Templates
 */
public class TemplateUtil {

	/**
	 * 
	 */
	public TemplateUtil() {
		super();
		// TODO Auto-generated constructor stub
	}

	public static void main(String[] args) {
	}
	
	public static Form template2Form(String template) throws Exception{
		Parser parser = new Parser();
		parser.setInputHTML(template);			
		
		return null;
	}
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?