Intellij IDEA15: 带着参数 运行

Posted 沙耶

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Intellij IDEA15: 带着参数 运行相关的知识,希望对你有一定的参考价值。

package main.scala  
  
/**  
  * Created by silentwolf on 2016/5/24.  
  */  
object FileIO {  
  
  def main(args: Array[String]) {  
  
    if (args.length != 2) {  
      System.err.println("Usage: FileIO <sourcePath> <desPath>")  
      System.exit(1)  
    }  
  
    val Array(sourcePath,desPath) = args  
  
    println("第一个参数:"+sourcePath)  
  
    println("第二个参数:"+desPath)  
  
  }  
  
}  

 

 

 

技术分享

技术分享   技术分享

以上是关于Intellij IDEA15: 带着参数 运行的主要内容,如果未能解决你的问题,请参考以下文章

错误记录Mac 中 IntelliJ IDEA 运行 Python 程序报错 ( pip 21.0 will drop support for Python 2.7 in January 20 )(代

intellij idea15的golang插件怎么配置

选择要运行的配置类型时,在 IntelliJ IDEA 15 中运行 Gradle 测试而不是 Junit 测试

IntelliJ IDEA 15 Play 2.4 反向路由方法参数“string cannot be applied to java.lang.String”

Intellij IDEA带参数运行Java main方法

IntelliJ IDEA设置JVM运行参数