相当于 C# 中的 -javaagent?或者:在 C# 中使用 java 框架的方法
问题:我正在将系统从 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
创建 DLL 后,您可以将该 DLL 添加为项目中的引用并使用它。
要在 Visual C# 项目中添加引用,可以执行以下操作:
之后,您可以在编码中使用相同的内容。您可能需要导入 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:
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.