如何在 JScript 中从命令行进行输入?
如何在 JScript 中从命令行读取输入,类似于 Pascal 的 readln
?
How can I read input from the command line in JScript, similar to Pascal's readln
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
听起来您在询问 Windows 脚本宿主。如果您使用cscript.exe运行脚本,则可以使用
WScript.StdIn
:http://msdn.microsoft.com/en-us/library/skwz6sz4(v=VS.85).aspx
It sounds like you're asking about Windows Script Host. If you're using cscript.exe to run your scripts, you can work with
WScript.StdIn
:http://msdn.microsoft.com/en-us/library/skwz6sz4(v=VS.85).aspx
假设
cscript the.js a1 a2 ...
你可以;Assuming
cscript the.js a1 a2 ...
you can;我一直在研究 Pascal,所以我不太确定
ReadLn()
到底做了什么。如果您只想在命令行中从用户那里获取一行,您可以使用WScript.StdIn.ReadLine()
方法,如 这里。但是如果您想从文件中读取,那么您可以尝试:
from 在这里。
It has been like forever that I have looked into Pascal, so I'm not quite sure what
ReadLn()
exactly does. If you just want to get a line from the user in the command line you may use theWScript.StdIn.ReadLine()
method as described here.But if you want to read from a file, then you may try:
from here.