gpt4 book ai didi

c# - 从 Java 调用 C# dll

转载 作者:搜寻专家 更新时间:2023-10-31 20:29:58 24 4
gpt4 key购买 nike

我是一名 Java 开发人员。但是,出于某种原因,我必须借助 C# 来完成我的任务。我在下面提到了用于创建 DLL 的 C# 代码。必须在我的 Java 程序中使用该 DLL 来完成需要的工作。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Microsoft.Office.Interop.Word;

namespace Yrl.Tracingtool
{
public class DocxUtil
{
public Application Jump(string fileName)
{

object fileNameAsObject = (object)fileName;
Application wordApplication;
try
{
wordApplication = new Application();
object readnly = false;
object missing = System.Reflection.Missing.Value;
wordApplication.Documents.Open(ref fileNameAsObject, ref missing, ref readnly, ref missing,
ref missing, ref missing, ref missing, ref missing,
ref missing, ref missing, ref missing, ref missing,
ref missing, ref missing, ref missing, ref missing);
object what = Microsoft.Office.Interop.Word.WdGoToItem.wdGoToPage;
object which = Microsoft.Office.Interop.Word.WdGoToDirection.wdGoToFirst;
object count = 3;

wordApplication.Selection.GoTo(ref what, ref which, ref count, ref missing);

return wordApplication;
}
catch (Exception ex)
{
//LogEntry log = new LogEntry();
//log.Categories.Add("Trace");
//log.Message = ex.ToString();
//Logger.Write(log, "Trace");
throw new System.IO.FileLoadException("File cannot be opened");
}
finally
{
wordApplication = null;
}
}
}
}

我也查看了这个论坛和其他论坛,但大多数论坛都在谈论在 JNI 调用中使用 C++ 或 C DLL 文件。如果有人知道如何从 Java 调用 C# DLL,请告诉我。

最佳答案

我们使用 ICE在 .NET 和 Java 应用程序之间进行通信。这不是您真正需要的,但可能会有所帮助。

我还建议使用谷歌搜索“.NET Java bridge” - 有几个框架(jni4net、JNBridge 等)

关于c# - 从 Java 调用 C# dll,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10977200/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com