用jave从c:\lowertest.txt文件中读取所有内容(英文),将其全部改为大写字母
1.从c:\lowertest.txt文件中读取所有内容(英文),将其全部改为大写字母,再存入另一个文件c:\uppertest.txt文件中...
1. 从c:\lowertest.txt文件中读取所有内容(英文),将其全部改为大写字母,再存入另一个文件c:\uppertest.txt文件中
展开
展开全部
public void test1() throws IOException{
FileInputStream f=new FileInputStream(new File("c:\\lowertest.txt"));
FileOutputStream fo=new FileOutputStream(new File("c:\\uppertest.txt"));
byte[] b=new byte[20];
int len=0;
while ((len=f.read(b))!=-1) {
String txt=new String(b,0,len);
fo.write(txt.toUpperCase().getBytes(), 0, len);
}
fo.close();
f.close();
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询