A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© qmayuan 中级黑马   /  2013-8-1 18:13  /  973 人查看  /  1 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

File file = new File("prop.ini");  file.createNewFile();
我想问下这个如果不指定盘符,默认会创建到哪里,为什么?

我自己写了段代码,用eclipse运行成功了 ,但是文件找不到了,用cmd运行会出错误~!
所有代码:
import java.util.*;
import java.io.*;
class PropertyDemo
{
        public static void main(String[] args) throws IOException
        {
                Properties p = new Properties();
                File file = new File("prop.ini");
                if(!file.exists())
                {
         file.createNewFile();
                }
                FileInputStream fis = new FileInputStream(file);
                int count = 0;
                p.load(fis);

                String value = p.getProperty("time");

                if(value!=null)
                {
                        count = Integer.parseInt(value);
                        if(count>3)
                                System.out.println("您的次数已经使用完毕,请充值");
                }
                count++;
                p.setProperty("time",count+"");
               
                FileOutputStream fos = new FileOutputStream(file);
                p.store(fos,"使用信息");
                 fis.close();
                 fos.close();

        }

}


Property1.jpg (91.04 KB, 下载次数: 17)

感觉是找不到Properties呢

感觉是找不到Properties呢

p2.jpg (28.93 KB, 下载次数: 9)

p2.jpg

评分

参与人数 1技术分 +1 收起 理由
神之梦 + 1 赞一个!

查看全部评分

1 个回复

倒序浏览
File file = new File("prop.ini");  
file.createNewFile();
eclipse默认创建到项目文件目录
如果硬要在cmd中运行不妨在这样写路径
File file = new File("./prop.ini");  
file.createNewFile();
就是当前目录下

评分

参与人数 1技术分 +1 收起 理由
神之梦 + 1 赞一个!

查看全部评分

回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马