java获取当前文件夹名字
就是我选择一个文件打开可以用System.out.print();输出文件夹的路径。比如说是C:\DocumentsandSettings\AllUsers\Docume...
就是我选择一个文件打开可以用System.out.print();输出文件夹的路径。
比如说是C:\Documents and Settings\All Users\Documents\My Pictures
我想只要当前My Pictures文件夹的名字。有没有大虾可以解决的。。。。。。
我只想获取My Pictures这个文件夹名,前面的路径不要。 展开
比如说是C:\Documents and Settings\All Users\Documents\My Pictures
我想只要当前My Pictures文件夹的名字。有没有大虾可以解决的。。。。。。
我只想获取My Pictures这个文件夹名,前面的路径不要。 展开
展开全部
定义对象File,传入路径参数,File提供方法getName直接获得路径的名称,即你想要的部分
File file = new File("xxxx");
System.out.println(file.getName());
-----------------------------------------------
String getName()
返回由此抽象路径名表示的文件或目录的名称。
参见参考资料
File file = new File("xxxx");
System.out.println(file.getName());
-----------------------------------------------
String getName()
返回由此抽象路径名表示的文件或目录的名称。
参见参考资料
参考资料: http://gceclub.sun.com.cn/Java_Docs/html/zh_CN/api/index.html
展开全部
String path ="C:\Documents and Settings\
AllUsers\Documents\MyPictures";
File file = new File(path);
String name = file.getNmae();
AllUsers\Documents\MyPictures";
File file = new File(path);
String name = file.getNmae();
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
File file3 = new File("e:\\Temple");
String folder = file3.getName();
String folder = file3.getName();
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
import java.io.File;
public class getFileName {
public static void main(String [] args)
{
String path ="C:\\Documents and Settings\\AllUsers\\Documents\\My Pictures";
File file = new File(path);
String name = file.getName();
System.out.print(name);
}
}
输出
My Pictures
public class getFileName {
public static void main(String [] args)
{
String path ="C:\\Documents and Settings\\AllUsers\\Documents\\My Pictures";
File file = new File(path);
String name = file.getName();
System.out.print(name);
}
}
输出
My Pictures
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
孺子不可教,说的这么明白了还不懂么
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询