Arguments填写路径,argumenting path
java创建目录
贴上正确代码:你的代码本来没有什么问题的,但是只能够通过DOS下去运行,如果要在eclipse这些工具运行只能在arguments里面输入参数,谢谢采纳
import java.io.*;
import java.util.Scanner;
public class Exceptle13_1 {
public void newFolder(String newfolder) {
try {
String filepath = newfolder;
File myPath = new File(filepath);
if (!myPath.exists()) {
myPath.mkdir();
}
} catch (Exception e) {
System.out.println("新建目录存在");
e.printStackTrace();
}
}
public static void main(String[] args) {
String mynewpath = new Scanner(System.in).next();
System.out.println(mynewpath);
Exceptle13_1 createNewFolder = new Exceptle13_1();
createNewFolder.newFolder(mynewpath);
}
}
robot 定义报告和log 的路径
在run 的界面下,arguments的输入框内,
将其路径设置为:
-l C:\Users\Administrator\Desktop\testbaidu\run_log_report\log -r C:\Users\Administrator\Desktop\testbaidu\run_log_report\report -o C:\Users\Administrator\Desktop\testbaidu\run_log_report\output
eclipse中run中argument怎么输入路径名字?
Eclipse的路径的输入有两种方式:
一种是:c:\\windows\\**.** ;
另一种是:c:/windows/**.** ;
楼主可以试试。。。
nn_train.py: error: the following arguments are required:pycharm设置python运行参数
但是,如果python脚本设置了运行参数的话直接这样运行时会报下列参数是需要的错的,。
nn_train.py: error: the following arguments are required: -d/--dataset, -m/--model, -l/--label-bin, -p/--plot
点击后出现下图页面,在Parameter文本框内填写所需参数的路径
如下图,可以看到,设置运行参数后程序运行正常
如下图,可以看到,训练开始,程序运行正确。