java中大写a的数值_java字符统计(数字、大小写字母、空格等等)

java字符统计(数字、大小写字母、空格等等)。

import java.io.BufferedReader;

import java.io.File;

import java.io.FileNotFoundException;

import java.io.FileReader;

import java.io.IOException;

/*

* 题目:输入一行字符,分别统计出其中英文字母、空格、数字和其它字符的个数。统计字符类型

* 写了重载的两个方法,一个接受字符串作为参数,一个接受文件作为参数

*/

public class Basic7 {

private int number = 0;

private int bigLetter = 0;

private int smallLetter = 0;

private int space = 0;

private int others = 0;

public static void main(String[] args) {

Basic7 my1 = new Basic7();

Basic7 my2 = new Basic7();

String myString = “akhfahueueb24837 yiufa/.;.,gjakhghwuihg\\ajkahgjab9028748565″;

String fileName = “C:\\Users\\风中徜徉\\Desktop\\liujunfeng.txt”;

File myFile = new File(fileName);

my1.statistic(myString);

my2.statistic(myFile);

}

public void statistic(String astring)

{

byte mybytes[] = astring.getBytes();

for(byte b :mybytes)

{

if(b>=’0′ &&b<=’9′)

{

number++;

}

if(b>=’a’ &&b<=’z')

{

smallLetter++;

}if(b>=’A’ &&b<=’Z')

{

bigLetter++;

}

if(b==’ ‘)

{

space++;

}

else{others++;}

}

System.out.println(“数字”+number+” 小写字母 “+smallLetter+” 大写字母”+bigLetter+” 空格”+space+” 其他”+others);

}

public void statistic(File afile)

{

BufferedReader br =null ;

try {

br = new BufferedReader(new FileReader(afile));

} catch (FileNotFoundException e) {

// TODO Auto-generated catch block

System.out.println(afile.getAbsolutePath()+”文件不存在”);

//e.printStackTrace();

}

String temp;

try {

while((temp=br.readLine())!=null)

{

byte mybytes[] = temp.getBytes();

for(byte b :mybytes)

{

if(b>=0 &&b<=9)

{

number++;

}

if(b>=’a’ &&b<=’z')

{

smallLetter++;

}if(b>=’A’ &&b<=’Z')

{

bigLetter++;

}

if(b==’ ‘)

{

space++;

}

else{others++;}

}

}

} catch (IOException e) {

// TODO Auto-generated catch block

e.printStackTrace();

}

System.out.println(“数字”+number+” 小写字母 “+smallLetter+” 大写字母”+bigLetter+” 空格”+space+” 其他”+others);

}

}

运行结果如下图

11673.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值