| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 481 人关注过本帖
标题:文件流问题
取消只看楼主 加入收藏
w5644266
Rank: 1
等 级:新手上路
帖 子:101
专家分:0
注 册:2007-4-4
收藏
 问题点数:0 回复次数:1 
文件流问题

/**
* @(#)Demo.java
*
*
* @author
* @version 1.00 2007/5/22
*/

import java.io.*;
public class Demo
{

public Demo()
{

}

public static void main(String[] args)
{
try{
int acount;
byte[] bInput=new byte[100];
String str=new String();
FileInputStream file=new FileInputStream(new File("xiaoxiao.txt"));
String s1="a";
String s2="A";
int num=0;
int number=0;

acount=file.read(bInput);

str=str+new String(bInput);
while(acount!=-1)
{
str=str.substring(num,++num);
if(str.equals(s1)&&str.equals(s2))
{
number++;
}

}
System.out.println(number);


System.out.println(str);
file.close();
return;
}catch(FileNotFoundException er)
{
System.out.println(er.getMessage());
}
catch(IOException e)
{
System.out.println(e.getMessage());
}
catch(StringIndexOutOfBoundsException b)
{/**
* @(#)Demo.java
*
*
* @author
* @version 1.00 2007/5/22
*/

import java.io.*;
public class Demo
{

public Demo()
{

}

public static void main(String[] args)
{
try{
int acount;
byte[] bInput=new byte[100];
String str=new String();
FileInputStream file=new FileInputStream(new File("xiaoxiao.txt"));
String s1="a";
String s2="A";
int num=0;
int number=0;

acount=file.read(bInput);

str=str+new String(bInput);
while(acount!=-1)
{
str=str.substring(num,++num);
if(str.equals(s1)&&str.equals(s2))
{
number++;
}

}
System.out.println(number);


System.out.println(str);
file.close();
return;
}catch(FileNotFoundException er)
{
System.out.println(er.getMessage());
}
catch(IOException e)
{
System.out.println(e.getMessage());
}
catch(StringIndexOutOfBoundsException b)
{

}

}
}

}

}
}

不知道那里出问题了,编译能通过,运行没反应...
我想判断文件里有多少个"A"和"a"....

搜索更多相关主题的帖子: 文件 
2007-05-22 22:20
w5644266
Rank: 1
等 级:新手上路
帖 子:101
专家分:0
注 册:2007-4-4
收藏
得分:0 

是的...就是能这么加所以能用

2007-05-23 07:19
快速回复:文件流问题
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.016644 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved