编写一个java程序 5
从命令行输入参数,判断输入的参数是否是当前目录下的文件或子目录,如果不是则在当前目录中创建子目录,子目录名称为该参数名,如C:>javatestmyapp判断myapp是...
从命令行输入参数,判断输入的参数是否是当前目录下的文件或子目录,如果不是则在当前目录中创建子目录,子目录名称为该参数名,如C:>java test myapp 判断myapp是否是该盘下的文件或子目录,如果不是则创建目录 myapp.
展开
展开全部
希望对你有用。
import java.io.File;
import java.io.IOException;
public class Test {
private String classPath;
public String getClassPath(){
classPath = this.getClass().getResource(System.getProperty("file.separator")).getPath();
return classPath;
}
@SuppressWarnings("deprecation")
public static void main (String[] args) throws IOException{
if(args != null && args.length == 1){
if(args[0] != null && !"".equals(args[0])){
// 获得类所在路径
String path = java.net.URLDecoder.decode(new Test().getClassPath());
System.out.println("Test所在目录:" + path);
File file = new File(path);
if(file.exists()){
// 获得该目录下的文件或者文件夹
File[] files = file.listFiles();
for (int i = 0; i < files.length; i++) {
if(files[i].getName().equals(args[0]))
System.out.println("Test目录下已存在" + args[0]);
else{
File argsFile = new File(file.getAbsolutePath()+System.getProperty("file.separator")+args[0]);
if(!argsFile.exists()){
argsFile.mkdir();
System.out.println("Test目录下已创建" + args[0]+"成功");
}
}
}
}
}
}else{
System.out.println("输入参数无效!" );
}
}
}
import java.io.File;
import java.io.IOException;
public class Test {
private String classPath;
public String getClassPath(){
classPath = this.getClass().getResource(System.getProperty("file.separator")).getPath();
return classPath;
}
@SuppressWarnings("deprecation")
public static void main (String[] args) throws IOException{
if(args != null && args.length == 1){
if(args[0] != null && !"".equals(args[0])){
// 获得类所在路径
String path = java.net.URLDecoder.decode(new Test().getClassPath());
System.out.println("Test所在目录:" + path);
File file = new File(path);
if(file.exists()){
// 获得该目录下的文件或者文件夹
File[] files = file.listFiles();
for (int i = 0; i < files.length; i++) {
if(files[i].getName().equals(args[0]))
System.out.println("Test目录下已存在" + args[0]);
else{
File argsFile = new File(file.getAbsolutePath()+System.getProperty("file.separator")+args[0]);
if(!argsFile.exists()){
argsFile.mkdir();
System.out.println("Test目录下已创建" + args[0]+"成功");
}
}
}
}
}
}else{
System.out.println("输入参数无效!" );
}
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询