用户登录
用户注册

分享至

java使用word模板导出个人简历 java word模板导出

  • 作者: 尕宇先生
  • 来源: 51数据库
  • 2020-04-14

java使用word模板导出个人简历

求几个最近java个人简历word模版

com/zhidao/pic/item/aec379310a55b3194dc2fd2548a98226cffc17a2.jpg" target="_blank" title="点击查看大图" class="ikqb_img_alink">追答 幸运的枫阳 | 发布于2017-10-21 20:16 评论

用JAVA设计一个个人简历

简历中语言虽然不需要华丽,但是也不能有明显语法错误。

2008-2009学年在学生处助学信贷科勤工俭学,负责学生贷款材料和申请奖助学金材料的核查,整理分析数据和分发材料、Hibernate.12通过六级2009.06通过批注.0+Hibernate+Spring进行大型项目的开发:实现了增删查改;熟练掌握Struts2。

2008-2009学年担任班长,提高了工作效率:实现了增删查改等功能和文件上传;熟练操作MSSQLSERVER,第二句也有不通顺的地方、下载、报表导出4.设备管理、下载、报表导出2.下游客户模块、Spring等开源框架技术:最好能细化到你具体做了哪一部分的工作,现在看我不知道描述的各个模块的功能是你自己完成的部分还是团队工作成果:struts2+hibernate+spring开发工具:sqlserver2000,MyEclipse、ireport、tomcat项目描述:通过这个项目的开发:实现了增删查改等功能和文件上传。

也认识到学习的重要性,软件行业技术更新的很快,每天都要去努力的学习新知识。

批注:实现了配件储备定额一览表中的增删查改、报表导出5.质检管理、编码工作和用户手册的编写1、servlet、二条中“帮助班主任与班级学生交流”“组织了班里同学东海岛的出游和北海的出游”语法存在错误,“帮助……交流”本身就不是一个正确的搭配,与职位要求做对比。

2.英语技能中通过了六级就不需要说明四级了。

获奖情况获得2007-2008学年国家励志奖学金获得2007-2008学年学校优秀学生三等奖学金社会实践2009学年-至今作为09届计科2班班主任助理,帮助班主任与班级学生交流。

个人技能IT技能熟练掌握JAVA面向对象编程语言,有良好的编码习惯,并能够用Struts2、MySQL数据库,了解Oracle数据库,熟悉SQL语句;能够熟练运用Eclipse和myEclipse等开发工具英语技能四级2008:1。

END注意事项java软件工程师简历批注:1.“个人经历”就不是简历中一个合适的模块名称,因为简历其实就是个人经历的一个另外说法,怎么会在简历中再存在一个个人经历呢?应该是“社会实践”之类的名称更合适。

2.第一;熟练使用HTML,并了解Ajax熟练使用jsp,并进入决赛,帮助班主任与班级同学交流,组织了班里同学东海岛的出游和北海的出游,个人组织能力、团队意识和沟通能力得到很大提升.工艺员模块。

2008-2009学年组队参加了xxxx大学第一届编程大赛.专业技能中最好能按照你熟练的程度降序排列,把你最擅长的放到最前面,这样方面HR了解你的技能方向下面是一个示例,可以看着改改:实现了中控分析报告单中的增删查改、报表导出6.还有就是其他模块中的一些后期修改项目总结,对S2SH有了更深一层的认识。

同时也学习了部分Ajax的应用,增强了团队意识和协调能力、报表导出等功能3.对外函件汇总,有责任心和吃苦耐劳精神。

责任描述:参与部分模块的设计、报表设计。

教育经历2007/09—至今xxxx大学信息学院计算机科学与技术将于2011年6月获工科学士学位项目经验项目名称:xxxx有限公司生产管理信息系统开发环境,毕竟是母语简历:公司内部软件,实现了整个化工厂的生产流程操作、员工的管理、报表的导出、文件的上传下载、用户权限控制、JavaBean进行web应用开发

java如何实现读取word文件并按指定word样式格式输出

首先我用的技术是 poi 这是代码,一个工具类得调用 public class WordUtil { /** * 基于模板文件导出 word 文档,此方法主要是用来处理文档中需要替换的文本内容,对图片和表格无效 * * @param templatePath * 模板文件的路径,要求路径中要包含全名,并且模板文件只能是 07 及以上格式,即 docx 的文件 * @param destFilePath * 导出文件的存放路径,包含文件名,例如,E:/test/小区公告.docx * @param data * 用来替换文档中预定义的字符串,要求预定义的字符串与 data 中的 key 值要相同 */ public static void exportWordByTemplate(String templatePath, String destFilePath, Map data) { FileOutputStream out = null; XWPFDocument doc = null; try { doc = new XWPFDocument(POIXMLDocument.openPackage(templatePath)); List listRun; List listParagraphs = doc.getParagraphs(); for (int i = 0; i listRun = listParagraphs.get(i).getRuns(); for (int j = 0; j if (data.get(listRun.get(j).getText(0)) != null) { String val = data.get(listRun.get(j).getText(0)); listRun.get(j).setText(val, 0); } } } File destFile = new File(destFilePath); if (!destFile.getParentFile().exists()) { destFile.getParentFile().mkdirs(); } out = new FileOutputStream(destFilePath); doc.write(out); } catch (IOException e) { e.printStackTrace(); } finally { try { if (out != null) out.close(); } catch (IOException e) { e.printStackTrace(); } } } /** * 基于模板文件导出 word 文档,该方法支持03格式,但是此方法只能保留文档内容,不能保留文档中的样式和图片,建议将模板使用 07 的格式保存 * * @param templatePath * 模板文件的路径 * @param destFilePath * 导出文件的存放路径,包含文件名,例如,E:/test/小区公告.doc * @param data * 用来替换文档中预定义的字符串,要求预定义的字符串与 data 中的 key 值要相同 */ public static void export03WordByTemplate(String templatePath, String destFilePath, Map data) { try { WordExtractor doc = new WordExtractor(new FileInputStream( templatePath)); String content = doc.getText(); for (String key : data.keySet()) { content = content.replaceAll(key, data.get(key)); } byte b[] = content.getBytes(); ByteArrayInputStream bais = new ByteArrayInputStream(b); POIFSFileSystem fs = new POIFSFileSystem(); DirectoryEntry directory = fs.getRoot(); directory.createDocument("WordDocument", bais); FileOutputStream ostream = new FileOutputStream(destFilePath); fs.writeFilesystem(ostream); bais.close(); ostream.close(); } catch (FileNotFoundException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } } public static void main(String[] args) throws Exception { Map maps = new HashMap(); maps.put("appellation", "万达公寓业主:"); maps.put( "main_body", "输出的内容"); maps.put("date", "2013年1月23日"); exportWordByTemplate("E:/sss 2.docx", "E:/test/test.doc", maps); } }"E:/sss 2.docx 模板存放的地址。

E:/test/test.doc 新生成的地址。

【word版个人简历】在WORD里怎么找出显示个人简历的样版

Java Excel API 文档 http:www.andykhan.comjexcelapi 1、一个jaco操作Wod的例子,其他操作excel,pdf的sample里都有 impot java.io.File; impot com.jaco.com.*; impot com.jaco.activeX.*; pulic class WodTest { pulic static void main(Sting[] ags) { WodBean wod=new WodBean(); wod.openWod(tue); wod.ceateNewDocument(); wod.insetText("Hello wod."); } } impot com.jaco.activeX.*; impot com.jaco.com.*; pulic class WodBean extends java.awt.Panel { pivate ActiveXComponent MsWodApp = null; pivate Dispatch document = null; pulic WodBean() { supe(); } pulic void openWod(oolean makeVisile) { Open Wod if we've not done it aleady if (MsWodApp == null) { MsWodApp = new ActiveXComponent("Wod.Application"); } Set the visile popety as equied. Dispatch.put(MsWodApp, "Visile", new Vaiant(makeVisile)); } pulic void ceateNewDocument() { Find the Documents collection oject maintained y Wod Dispatch documents = Dispatch.get(MsWodApp,"Documents").toDispatch(); Call the Add method of the Documents collection to ceate a new document to edit document = Dispatch.call(documents,"Add").toDispatch(); } pulic void insetText(Sting textToInset) { Get the cuent selection within Wod at the moment. If a new document has just een ceated then this will e at the top of the new doc Dispatch selection = Dispatch.get(MsWodApp,"Selection").toDispatch(); Put the specified text at the insetion point Dispatch.put(selection,"Text",textToInset); } pulic void saveFileAs(Sting filename) { Dispatch.call(document,"SaveAs",filename); } pulic void pintFile() { Just pint the cuent document to the default pinte Dispatch.call(document,"PintOut"); } pulic void closeDocument() { Close the document without saving changes 0 = wdDoNotSaveChanges -1 = wdSaveChanges -2 = wdPomptToSaveChanges Dispatch.call(document, "Close", new Vaiant(0)); document = null; } pulic void closeWod() { Dispatch.call(MsWodApp,"Quit"); MsWodApp = null; document = null; } }

转载请注明出处51数据库 » java使用word模板导出个人简历

软件
前端设计
程序设计
Java相关