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.
如何找到 Railo 在 Windows 2008 r2 上运行的 Windows 用户帐户?
我相信您可以使用这些System属性,就像在 ACF 中一样:
System
<cfscript> prop = createObject("java", "java.lang.System").getProperties(); WriteDump( var=prop["user.name"], label="User.Name"); WriteDump( var=prop, label="All Properties" ); </cfscript>