Package org.brain.bean

Examples of org.brain.bean.CreateWord


    
    //获取id号
    String id = request.getParameter("id");
    System.out.println(id);
    //从数据库中返回向对应的数据
    CreateWord context4db = new CreateWord(Integer.parseInt(id));
    fileContext=context4db.getWordContext();
   
    //在服务器端生成word文件
   
    Jacob2Word word = new Jacob2Word();
    word.createNewDocument();
View Full Code Here

TOP

Related Classes of org.brain.bean.CreateWord

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.