// 已知文件a.txt文件中的内容为“bcdeadferwplkou”,请编写程序读取该文件内容,并按照自然顺序排序后输出到b.txt文件中。
//即b.txt中的文件内容应为“abcd…………..”这样的顺序。
import java.io.*;
class a{
public static void main(String[] args) {
BufferedReader br=null;
PrintWriter pw=null;
try{
br=new BufferedReader(new InputStreamReader(System.in));//创建一个字符缓冲流读取文件
pw=new PrintWriter(System.out,true);//用打印流向目的文件打印数据
//StringBuffer sb=new StringBuffer();//定义一个字符串缓冲区,用来装读取到的字符串
String s=null;
while((s=br.readLine())!=null){
if("ov".equals(s))
break;
char[] ch=s.toCharArray();
for(int x=0;x<ch.length;x++){//将数组排序
for(int y=x+1;y<ch.length;y++){
if(ch[x]>ch[y]){
char temp=ch[x];
ch[x]=ch[y];
ch[y]=temp;
}
}
}
// sb.append(s);//向字符串缓冲区添加读取到的数据
//char[] ch=sb.toString().toCharArray();//将字符串缓冲区转换成字符数组
/* for(int x=0;x<ch.length;x++){//将数组排序
for(int y=x+1;y<ch.length;y++){
if(ch[x]>ch[y]){
char temp=ch[x];
ch[x]=ch[y];
ch[y]=temp;
}
}
}*/
pw.println(ch);//将数组用打印流写到目的文件
}
}catch(Exception ex){
new RuntimeException("文件读取失败");
}finally{//关流
try{
if(pw!=null)
pw.close();
}catch(Exception ex){
new RuntimeException("资源关闭失败");
}finally{
try{
if(br!=null)
br.close();
}catch(Exception ex){
new RuntimeException("资源关闭失败");
}
}
}
}
}
|
|