相当于 C# 中的 -javaagent?或者:在 C# 中使用 java 框架的方法

发布于 2024-08-28 11:03:52 字数 627 浏览 6 评论 0原文

问题:我正在将系统从 Java 转换为 C#,而他们使用java 框架 我真的很想使用它,因为它可以处理系统中最复杂的部分,否则我就必须自己实现。我有这个框架的源代码。

到目前为止,我已经考虑使用 IKVM.NET 生成 .dll,但我不知道下一步该做什么,因为在 Java 中,为了使用您的代码运行框架,您应该通过添加 -javaagent:bin/deuceAgent.jar 来使用选项 -javaagent (其中 deuceAgent 是框架)到您的 java 命令行。

一旦我有了 .dll,我不知道 C# 中的等效项是什么,也不知道是否存在等效项。

我该怎么做?

The issue: I'm translating a system from Java to C#, and they use a java framework that I'd really like to use, since it takes care of the most complex parts of the system, which I would otherwise have to implement myself. I have the source code of this framework.

So far, I've thought of using IKVM.NET to generate a .dll, but I'm not sure what to do next, because in Java, in order to run the framework with your code, you're supposed to use the option -javaagent by adding -javaagent:bin/deuceAgent.jar (where deuceAgent is the framework) to your java command line.

I don't know what the equivalent in C# would be once I have my .dll, or whether there's an equivalent at all.

How do I do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

东走西顾 2024-09-04 11:03:52

创建 DLL 后,您可以将该 DLL 添加为项目中的引用并使用它。

要在 Visual C# 项目中添加引用,可以执行以下操作:

  1. 在解决方案资源管理器中,右键单击项目节点,然后单击“添加引用”。
  2. 在“添加引用”对话框中,选择指示要引用的组件类型的选项卡。 (在您的情况下,它是 DLL 文件)
  3. 选择要引用的组件,然后单击“确定”。

在此处输入图像描述

之后,您可以在编码中使用相同的内容。您可能需要导入 Java 类库中的命名空间,然后才能使用这些类。

Once the DLL is created, you can add that DLL as a reference in your project and use it.

To add a reference in a Visual C# Project, you can do the following:

  1. In Solution Explorer, right-click the project node and click Add Reference.
  2. In the Add Reference dialog box, select the tab indicating the type of component you want to reference. (In your case, it is the DLL file)
  3. Select the components you want to reference, and then click OK.

enter image description here

After that, you can use the same in your coding. You may need to import namespaces that are there in the Java Class lib, and then you can use those classes.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文