java IO问题
为什么读入文件的随机数是两个在一行的啊 ??我加了换行了啊
请高手指点一下!!!
import java.io.*;
public class TesttoBinaryString {
/**
* @param args
*/
public static void main(String[] args) {
try{
FileOutputStream in = new FileOutputStream("D:\\JavaWorkspace\\rondom.txt");
int i=0;
while(i<10){
String d = new Double(java.lang.Math.random()).toString();
byte b[] = d.getBytes();
in.write(b);
in.write('\n');
i++;
}
}catch(
FileNotFoundException e){
System.out.println("文件未找到");
}
catch(
IOException o){
System.out.println("IO异常");
}
}
}
------解决方案--------------------