java创建目录
packagethirteen;importjava.io.*;publicclassExceptle13_1{privatevoidnewFolder(Stringne...
package thirteen;
import java.io.*;
public class Exceptle13_1
{
private 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)
{
Exceptle13_1 createNewFolder=new Exceptle13_1();
String mynewpath=args[0];
createNewFolder.newFolder(mynewpath);
}
}
可以帮我看一下这个有什么错误吗,为什么它不建文件夹,而提示Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 1
at thirteen.Exceptle13_1.main(Exceptle13_1.java:27)
这是怎么回事啊! 展开
import java.io.*;
public class Exceptle13_1
{
private 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)
{
Exceptle13_1 createNewFolder=new Exceptle13_1();
String mynewpath=args[0];
createNewFolder.newFolder(mynewpath);
}
}
可以帮我看一下这个有什么错误吗,为什么它不建文件夹,而提示Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 1
at thirteen.Exceptle13_1.main(Exceptle13_1.java:27)
这是怎么回事啊! 展开
4个回答
展开全部
贴上正确代码:你的代码本来没有什么问题的,但是只能够通过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);
}
}
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);
}
}
展开全部
这个方法在运行时候,需要输入参数,这个参数即是你想要创建的目录名称路径。
这样执行下试试 java thirteen.Exceptle13_1 "你想要创建的目录名称",有什么问题可以hi我
这样执行下试试 java thirteen.Exceptle13_1 "你想要创建的目录名称",有什么问题可以hi我
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
1.在运行这个程序前先配置一下运行环境,如果你使用的是eclipse,在代码中右击选择“Run as > Run configurations...”,在弹开对话框的右侧打开“Arguments”选项卡,在“Program arguments” 选项中填写你想创建的目录名如“E:/Test”;这里目录名可以使用绝对路径,也可以使用相当路径。
2.还可以直接修改代码:
将String mynewpath=args[0];
改成String mynewpath=“E:/Test”;即可
2.还可以直接修改代码:
将String mynewpath=args[0];
改成String mynewpath=“E:/Test”;即可
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
通过myPath.mkdirs()创建目录,这样是递归创建。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询