- 浏览: 5159283 次
- 性别:
- 来自: 北京
文章分类
最新评论
-
silence19841230:
先拿走看看
SpringBoot2.0开发WebSocket应用完整示例 -
wallimn:
masuweng 写道发下源码下载地址吧!三个相关文件打了个包 ...
SpringBoot2.0开发WebSocket应用完整示例 -
masuweng:
发下源码下载地址吧!
SpringBoot2.0开发WebSocket应用完整示例 -
masuweng:
SpringBoot2.0开发WebSocket应用完整示例 -
wallimn:
水淼火 写道你好,我使用以后,图标不显示,应该怎么引用呢,谢谢 ...
前端框架iviewui使用示例之菜单+多Tab页布局
最近写了个java操作visio文档的小工具.使用了javacom & jacob,参考了c++操作visio的com技术,并请教了javacom的作者Miika.
使用示例:
引自:http://javaeye-mao.iteye.com/blog/156672
public class JVisio { private static Log log = LogFactory.getLog(JVisio.class); /** * Visio 程序 */ IVApplication visioApp = null; /** * * 默认visio可见 * */ public JVisio() { this(true); } /** * * @param visible */ public JVisio(boolean visible) { this.visioApp = new IVApplication(); this.visioApp.setVisible(visible); } /** * 退出 * */ public void quit() { this.visioApp.Quit(); } /** * 打开文档 * * @param visioFile * visio file name. * @return */ public IVDocument addDocument(String visioFile) { IVDocument doc = null; try { doc = this.visioApp.getDocuments().Add(visioFile); } catch (Exception ex) { log.error("Error of open the file '" + visioFile + "'!"); ex.printStackTrace(); } return doc; } /** * 文件另存为 * * @param document * @param distFile * 这里的路径分隔符一定是要是 \\,例如E:\\workspace\\jvisio\\test\\tt_out.vsd * @return */ public short saveAs(IVDocument document, String distFile) { return document.SaveAs(distFile); } /** * 获取visio文档里的一个master * * @param document * 文档 * @param masterNameUIDOrIndex * master的索引或者名称 * @return */ public IVMaster getMaster(IVDocument document, String masterNameUIDOrIndex) { IVMasters masters = document.getPages().getItem(new Integer(1)) .getDocument().getMasters(); IVMaster master = masters.getItem(masterNameUIDOrIndex); log.info("Get the master :" + (master == null ? null : master.getName())); return master; } /** * 获取单元格 * * for example : * * double pageWidth = getCells(bts,"PageWidth").getResultIU(); * * @param master * @param localeSpecificCellName * @return */ public IVCell getCells(IVMaster master, String localeSpecificCellName) { return master.getPageSheet().getCells(localeSpecificCellName); } /** * 画模具 * * @param document * 文档 * @param master * 模具 * @param xPos * x坐标 * @param yPos * y坐标 * @return */ public IVShape drop(IVDocument document, IVMaster master, double xPos, double yPos) { IVPage tpage = document.getPages().getItem(new Integer(1)); return tpage.Drop(master.getDispatch(), xPos, yPos); } /** * 画折线 * * @param document 目标document * @param fromShape 起点的模具 * @param fromPointName 起点的名称 * @param toShape 目标点的模具 * @param toPointName 目标点的名称 * @param connectLine 线模具 * @param needTab */ public void visioDrawOrthLine(IVDocument document, IVShape fromShape, String fromPointName, IVShape toShape, String toPointName, IVShape connectLine, boolean needTab) { // 要连线的起点 IVCell fromCell = fromShape.getCells(fromPointName); // 要连线的终点 IVCell toCell = toShape.getCells(toPointName); // 线的起终点 IVCell beginOfLine = connectLine.getCells("BeginX"); IVCell endOfLine = connectLine.getCells("EndX"); // 连接 beginOfLine.GlueTo(fromCell); endOfLine.GlueTo(toCell); if (needTab) { IVCell x2 = connectLine.getCells("Geometry1.X2"); double k = x2.getResultIU(); String v = String.valueOf(k * 2); x2.setFormulaU(v); connectLine.getCells("Geometry1.X3").setFormulaU(v); } } /** * 标注文字 * * @param document * @param text * 标注的文字 * @param rectangle * 矩形 * @param vertAlign * 1表示yes,0表示no * @param horzAlign * 1表示yes,0表示no * @param textColor * "RGB(128,32,64)" */ public void visioDrawText(IVDocument document, String text, Rectangle rectangle, int vertAlign, int horzAlign, String textColor) { IVPage page = document.getPages().getItem(new Integer(1)); IVShape textShape = page.DrawRectangle(rectangle.getX1(), rectangle .getY1(), rectangle.getX2(), rectangle.getY2()); // some properties: // 字体大小 IVCell cell = textShape.getCells("Char.Size"); if (cell != null) cell.setFormulaU("8pt"); // 垂直居中 cell = textShape.getCells("VerticalAlign"); if (cell != null) cell.setFormulaU(String.valueOf(vertAlign)); // Para.HorzAlign cell = textShape.getCells("Para.HorzAlign"); if (cell != null) cell.setFormulaU(String.valueOf(horzAlign)); // text color cell = textShape.getCells("Char.Color"); if (cell != null) cell.setFormulaU(textColor); textShape.setText(text); }
使用示例:
public class Demo { private static Log log = LogFactory.getLog(Demo.class); public static void main(String[] args) { JVisio visio = new JVisio(); String basedir = "E:\\workspace\\jvisio\\test\\"; try { // 打开模具 IVDocument model = visio.addDocument(basedir + "model.vss"); // 打开模板 IVDocument template = visio.addDocument(basedir + "template.vst"); // 获取bts模型 IVMaster bts = visio.getMaster(model, "BTS"); IVMaster gfq = visio.getMaster(model, "功分器"); log.info(bts.getName()); log.info(gfq.getName()); // 标注文字 /* * Rectangle rectangle = new Rectangle(0, 5, 2, 7); * visio.visioDrawText(template, "哈哈", rectangle, 0, 0, * "RGB(128,32,64)"); */ // 连线 IVShape btsShape = visio.drop(template, bts, 1, 5); IVShape gfqShape = visio.drop(template, gfq, 2, 7); IVMaster line = visio.getMaster(model, "1/2馈线"); IVShape lineShape = visio.drop(template, line, 1, 1); visio.visioDrawOrthLine(template, btsShape, "Connections.X1", gfqShape, "Connections.X1", lineShape, false); // 另存为 visio.saveAs(template, basedir + "out.vsd"); } catch (Exception ex) {// 捕捉Runtime Exception,并关闭visio. visio.quit(); } } }
引自:http://javaeye-mao.iteye.com/blog/156672
发表评论
-
gradle编译错误:Could not find method compile() for arguments
2020-09-19 10:50 18484编译(IDEA+Gradle)一个别人的工程,出现一个 ... -
netty心跳检查之UDP篇
2019-09-15 08:50 2391部分UDP通信场景中,需要客户端定期发送心跳信息,以获取终 ... -
解决tomcat部署两个SpringBoot应用提示InstanceAlreadyExistsException
2019-06-30 11:49 3387两个SpringBoot应用部署在一个Tomcat中,单独 ... -
Eclipse配置MyBatis代码自动化功能
2019-06-29 10:16 17681.安装插件 Eclipse中,Help->Ecli ... -
vue.js中使用qrcode生成二维码
2019-05-20 00:00 7654一、安装包 npm install qrcodejs2 --s ... -
MySQL插入数据报错: Incorrect string value: '\xFD\xDE'
2019-03-31 23:19 1247我MySQL数据库用的uft-8字符集,插入数据一直很正常 ... -
vue自定义组件并双向绑定属性
2019-03-08 22:46 3255做了两个子组件,原理基本一样,一个是使用原生的select ... -
vue-router简单示例
2019-03-05 00:32 1150写个基本完整、稍有借鉴意义的示例,防止自己忘记。 &l ... -
“联通充值系统繁忙”轻松应对
2019-02-06 11:03 3973大过年的,联通充个值一直报“充值系统繁忙”。昨天晚上试了几 ... -
electron.js数据库应用---导航菜单(element-ui+mysql)
2019-02-05 21:33 2364一、环境搭建 略, ... -
electron.js数据库应用---入门(mysql+element-ui)
2019-01-27 23:19 7492我的机器:Windows10,64 ... -
SpringMVC 在controller层中注入成员变量request,是否线程安全
2018-12-17 21:17 2747@RestController public class ... -
VueJS 组件参数名命名与组件属性转化
2018-12-03 00:00 2073转自:https://www.cnblogs.com/meiy ... -
vue-resource拦截器实现token发送及检验自动化
2018-11-16 22:38 3077用了很长时间vue-resource,最近思考$http发 ... -
element-ui试用手记
2018-10-29 20:25 1742element-ui、iviewui都以vue.js为基础 ... -
iviewui中表格控件中render的使用示例
2018-07-07 16:46 9785示例了如何在表格中显示按钮,如何将代码转化为文字。 i ... -
Tomcat错误“Alias name tomcat does not identify a key entry”解决
2018-07-05 21:39 6567申请到了阿里云的证书后,下载、按照说明生成jks格式证书、 ... -
阿里云免费证书“fileauth.txt内容配置错误”解决
2018-07-05 20:43 5296最近研究微信小程序开发,上阿里云申请了个证书,使用文件验证 ... -
springboot2.0跨域配置
2018-07-04 22:11 5283springboot2.0跨域配置: 一、代码 ... -
微信小程序使用code换openid的方法(JAVA、SpringBoot)
2018-07-01 21:52 10398微信小程序序的代码中提示,使用code换取openid,但 ...
相关推荐
通过java操作visio的方式:开源com4j
支持读写Visio文件,含demo,模具模板等文件必须是自己本机有的(可以到Visio安装目录去查找类似文件)VisioMain是读 Demo是创建写
例如,如果你需要创建一个新的Visio文档,你可以这样操作: ```java import com4j.Variant; import com.microsoft.visio.Application; import com.microsoft.visio.Document; import com.microsoft.visio.Visio; ...
对于与Visio、Word和Excel的交互,com4j.jar允许Java代码创建并操作这些应用程序的对象,例如打开文档、读取单元格、获取形状属性等。 为了具体实现,开发者需要按照以下步骤操作: 1. 添加依赖:将args4j-2.0.1....
2、cmd进入JDK安装目录,运行 java -jar tlbimp....在JDK安装目录出现一套操作visio的类库(可以不做,资源包括生成的类库,test文件夹就是) 3、把args4j-2.0.1.jar加入到你的项目里。运行VisioMain.java类就成功了
Java使用Com4j读取Visio是通过Java的COM(Component Object Model)接口来操作Microsoft Visio应用程序,实现对Visio文件的访问和处理。Com4j是一个开源库,它为Java提供了与COM对象交互的能力,弥补了Java不直接...
做项目时实现的功能,客户要求上传visio文件后,把visio中的图片读取出来,然后用图片展示出来,这个功能就应运而生了。 PS:包中附有jcom.dll文件,这个是关键,需要将jcom.dll文件放到服务器的bin目录下
这些库允许Java代码创建、打开、修改和保存Visio文档,以及执行其他复杂的任务,如绘制形状、连接线和应用样式。 2. **Visio对象模型**:在Visio中,一切皆为对象。工作簿、页面、形状、连接线等都是对象,每个对象...
Visio中的COM接口提供了丰富的功能,如打开Visio文档、获取或设置形状属性、遍历图表层次结构等。使用Com4j,你可以创建一个`com4j.Dispatch`对象来代表Visio的应用程序,然后调用其方法执行各种操作。 例如,以下...
综上所述,文章《java Jacob 解析visio》深入探讨了在Java环境下解析和操作Visio文档的技术方案,以及通过编程手段充分利用Visio在绘图方面的强大功能。通过对Visio文档不同格式的解析方法以及使用COM接口进行编程的...
这个“Java 值传递Visio资源”包含了几个Visio图形文件,帮助我们直观地理解这两种传递方式。 1. **值传递**: 当方法调用时,对于基本类型(如int, double, char等)的参数,实际传递的是变量的副本。这意味着在...
在Java开发中,有时我们需要对Office文件如Word、Excel和PowerPoint进行操作和编辑,例如创建、读取、修改或导出数据。Apache POI是一个强大的开源库,专门用于处理微软的Office文档格式,包括旧的HSSF/HWPF(用于...
`java.io.File`类则用于文件和目录的操作。 接着,"jar包"是Java的可执行文件格式,包含编译后的类文件和其他资源。在Java开发中,开发者经常会引用第三方的jar包来获取特定的功能,如Apache Commons、Google Guava...
- `Winstchs.exe`:可能是一个Windows下的命令行工具,用于执行各种文件操作,包括转换。但具体功能需要根据软件文档进一步了解。 - `xConvert.exe`:可能是一个文件转换工具,支持多种格式之间的转换,包括Visio...
Java软件开发流程图Visio 2013.vsdx 文档管理软件、自动化打包软件、禅道、svn、maven等都在流程里面有规划
- **工具库**:使用com4j库,可以方便地在Java中操作Visio文档。 - **安装**:通过Maven或Gradle添加com4j依赖。 - **实例**:加载Visio文档并操作其内容: ```java import com.visio.*; public class ...
此资源为viso文档,主要为Java 输入与输出的UML类,包括:输入流与输出流的层次结构、Reader和Writer的层次结构、Closeable、Flushable、Readable和Appendable接口。
“00JAVA常用软件图标.vssx”文件则是一个Visio模具,包含了上述提到的软件、框架和数据库的图标。Visio是一款强大的图形设计工具,特别适合绘制流程图、架构图和UML图。使用这个模具,开发者可以在设计图表时快速...