是否可以从 C# 访问 Beanshell 对象?
我有一个从 beanshell 代码启动的 C# 应用程序。这个 C# 应用程序是否可以访问 beanshell 代码中包含的对象?
例如,在我的 beanshell 代码中,我有一个对象 A,其中包含一堆我想稍后在我的 C# 应用程序中使用的值。如何从 C# 检索这些值?
I have a C# application that's launched from beanshell code. Is it possible for this C# application have access to objects contained in the beanshell code?
For example, in my beanshell code, I have an object A that contains a bunch of values that I'd like to use in my C# application later. How do I retrieve those values from C#?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试使用 JSON 对对象进行序列化(反序列化)。
Try (de)serializing the objects with JSON.