Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个文件,我在其中写了一些变量。我想在使用 JShell 打开的运行时应用程序上将这些变量解析为这个 Jshell 实例。
FileWithVars.XYZ
float x = 5f; String s = "TestString";
目前我在 jshell 启动脚本中使用 /o FileWithVars.XYZ 加载此文件,但现在我想从在 Jshell 中运行的应用程序执行相同的操作。
任何想法如何存档?
亲切的问候