免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2192 | 回复: 9
打印 上一主题 下一主题

对文件操作,请问程序访问文件的路径是什么 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2006-02-23 21:28 |只看该作者 |倒序浏览
package com;
import java.io.*;
class Stream {
        public static void main(String[] args)throws IOException{
                FileInputStream  fin;
                int data;
                String str;
                InputStreamReader a = new InputStreamReader(System.in);
                BufferedReader b = new BufferedReader(a);
                System.out.println("please insert file name");
                str = b.readLine();
                try
                {
                        fin = new FileInputStream(str);
                }catch(FileNotFoundException e){
                        System.out.println("sorry,file not found");
                        return;
                }catch(ArrayIndexOutOfBoundsException e){
                        System.out.println("usage:  file name");
                        return;
                }
                do
                {
                        data = fin.read();
                        System.out.print((char)data);
                }while(data != -1);
        }
}
程序是这样子的,但是我不知道run或者debug 时程序去哪个文件夹找str文件,是不是elipse或者j-buider 的哪个默认路径,如果是,怎么看这个路径,如果不是,那我怎么让程序访问任意一个路径下的文件呢?
希望师兄们不吝赐教,感激!!!

论坛徽章:
0
2 [报告]
发表于 2006-02-23 22:26 |只看该作者
You can get current path using the following code,please try it!

File f = new File("a.txt");
System.out.println(f.getAbsolutePath());

good luck for you!

论坛徽章:
0
3 [报告]
发表于 2006-02-24 12:52 |只看该作者

I find ,but ....

OK,thank you for your kind help I find the current path ,but can I find the  file that is not    in the current path and how can I?

论坛徽章:
0
4 [报告]
发表于 2006-02-24 13:15 |只看该作者
OK,thank you for your kind help I find the current path ,but can I find the  file that is not    in the current path and how can I?


http://javaalmanac.com/egs/java.io/pkg.html

Getting the Current Working Directory
The working directory is the location in the file system from where the java command was invoked.

   
  1. String curDir = System.getProperty("user.dir");
复制代码


Getting an Absolute Filename Path from a Relative Filename Path

   
  1. File file = new File("filename.txt");
  2.     file = file.getAbsoluteFile();  // c:\temp\filename.txt
  3.    
  4.     file = new File("dir"+File.separatorChar+"filename.txt");
  5.     file = file.getAbsoluteFile();  // c:\temp\dir\filename.txt
  6.    
  7.     file = new File(".."+File.separatorChar+"filename.txt");
  8.     file = file.getAbsoluteFile();  // c:\temp\..\filename.txt
  9.    
  10.     // Note that filename.txt does not need to exist
复制代码

[ 本帖最后由 wolfg 于 2006-2-24 13:20 编辑 ]

论坛徽章:
0
5 [报告]
发表于 2006-02-24 13:35 |只看该作者

方法找到了,但是新问题又出现了

只要输入完全路径就行了,但是我又发现了一个问题,如果我要打开word 文档,那应该怎么办?我现在只能读.txt的文档啊

论坛徽章:
0
6 [报告]
发表于 2006-02-24 22:34 |只看该作者
要使用一些专门的软件包,比如apache的POI http://jakarta.apache.org/poi

论坛徽章:
0
7 [报告]
发表于 2006-02-25 10:20 |只看该作者

谢谢师兄

呵呵,感谢师兄们的帮助了,我只是学会了一点然后又想到如果情况一变化然后又该怎么样处理,因为我也只是个初学者,有很多问题不太明白,感谢你们的耐心指导。

论坛徽章:
0
8 [报告]
发表于 2006-02-25 10:25 |只看该作者
原帖由 perryhg 于 2006-2-24 22:34 发表
要使用一些专门的软件包,比如apache的POI http://jakarta.apache.org/poi


师兄,我现在又想到你是怎么发现这个网站有这个方面的内容的呢?我为什么不知道,你是以前知道的还是刚刚耐心的帮我查的?如果是后者,能不能请你给我介绍您的方法?感谢

论坛徽章:
0
9 [报告]
发表于 2006-02-25 13:52 |只看该作者
楼主厉害啊,我在cu回帖以来还是第一次有人问我这个问题呢!做技术人员就应该有这种好奇心的探索的精神,在此我特别表扬一下!实际上很多东西都可以通过搜索引擎来解决的。在技术领域,我主要用google,不信,你比较一下在google和百度上搜索“JDK”,看看出来的结果就知道区别了。google的特点是关键字搜索,因此只要给与相应的关键字和关键字组合,基本可以找到你要的东西,比如你的问题,搜索 java ms word 就可以找到答案了!

论坛徽章:
0
10 [报告]
发表于 2006-02-25 21:51 |只看该作者

回复 9楼 perryhg 的帖子

师兄,谢谢你,一是因为你跟我解决了一个实际的问题,二是你给我查答案的耐心,更重要的是你给我指明了一个实用的方法,这个蒋会使我终生受用,他让我知道了该如何自己去解决问题,感谢,真的很感谢!!!!!
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP