在intellij中运行scala程序时模拟stdin的输入

时间:2013-08-26 05:25:37

标签: scala intellij-idea io-redirection

有没有办法将命令行参数配置为intellij进行stdin重定向?

有些事情:

运行|编辑运行配置|脚本参数

/shared/java/paf-rules.properties 2 < /shared/java/testdata.csv

2 个答案:

答案 0 :(得分:15)

不幸的是,没有 - 至少不是直接在运行配置中。

你能做的最好的事情就是:

  • 修改您的脚本/程序,使其无需args(读取System.in)或使用文件名参数(读取文件)

  • 制作一个以上述方式行事的包装脚本/程序。

希望这有帮助,

vikingsteve

答案 1 :(得分:1)

以下是具有以下选项的解决方案的模板:

  • 标准输入
  • 文件
  • &#34;定界符&#34;在程序中(最有可能用于测试)

  val input = """ Some string for testing ... """

  def main(args: Array[String]) {
    val is = if (args.length >= 1) {
      if (args(0) == "testdata") {
        new StringInputStream(input)
      } else {
        new FileInputStream(args(0))
      }
    } else {
      System.in
    }
    import scala.io._
    Source.fromInputStream(is).getLines.foreach { line =>

此代码段需要使用StringInputStream - 此处为:

  class StringInputStream(str : String) extends InputStream {
    var ptr = 0
    var len = str.length
    override def read(): Int = {
        if (ptr < len) {
          ptr+=1
          str.charAt(ptr-1)
        } else {
         -1
        }
    }
  }