如何使用Java进行COM

如何使用Java进行COM

本文介绍了如何使用Java进行COM Interop?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我是.NET程序员,正在与Java Spring Boot项目一起创建REST API.我需要在Spring Boot应用程序中使用Excel电子表格进行一些COM互操作.

I am a .NET programmer working with a Java Spring Boot project to create a REST API. I need to do some COM interop with an Excel spreadsheet from within the Spring Boot application.

我该怎么做?

我知道要写的代码.我只是不知道这些工具.具体来说,我需要参考哪些jar文件?我从哪里得到的?

I know the code to write. I just don't know the tools. Specifically, what jar files do I need to reference? Where do I get them from?

推荐答案

我希望

https://poi.apache.org/

否则,您可以使用"Java Access Bridge",这里是概述

Otherwise you can use "Java Access Bridge", here is an overview

https://docs.oracle.com/javase/8/docs/technotes/guides/access/jab/introduction.html#jab-overview

这篇关于如何使用Java进行COM Interop?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-24 13:31