当前位置: 首页 > 工具软件 > BeanGenerator > 使用案例 >

BeanGenerator

彭宏深
2023-12-01

BeanGeneratorDemo.java

public class BeanGeneratorDemo {
	
	public BeanGeneratorDemo(){
	}
	
	public static void main(String[] args) throws IOException {
		System.out.println("BeanGeneratorDemo begin");
		String realPath="D:\\02 work\\project_learn\\BeanTool\\src\\";
		
		/**
		 * 模板
		 */
		String[] templatePaths={
				realPath+"org/zfc/template/Bean.txt",
				realPath+"org/zfc/template/dataGrid.html"
		};
		/**
		 * 实体Excel
		 */
		String importBeanExcelPath=realPath+"org/zfc/bean/beans.xls";
		/**
		 * 输出路径
		 */
		String outputBasePath="D:\\beans\\";
		
		BeanGenerator beanGenerator=new BeanGenerator(templatePaths, importBeanExcelPath, outputBasePath);
		beanGenerator.generate();
		System.out.println("success,file:"+outputBasePath);
	}
}

  

 类似资料:

相关阅读

相关文章

相关问答