假设您有一个二进制文件,其中包含类型为int或double的数字。您不知道文件中数字的顺序,但它们的顺序记录在文件开头的字符串中。该字符串由字母i表示int,d表示double,按后续数字类型的顺序排列。该字符串使用writeUTF方法写入。
例如,字符串“iddiiddd”表示该文件包含八个值,如下所示:一个整数,后跟两个双精度数,后跟两个整数,后跟三个双精度数。
我的问题是,如果字符串中的字母多于数字,我怎样才能创建一个if语句告诉用户他们试图读取的文件中有错误?
我尝试使用这个,其中“count”是数字的数量,“length”是字符串的长度,但这不起作用。
if(count!=length){
System.out.println("Error in file: Length of string and numbers are not equal");
System.exit(0);
}
我的其余代码是:
public static void main(String[] args) {
Scanner keyboard=new Scanner(System.in);
System.out.print("Input file: ");
String fileName=keyboard.next();
int int_num_check=0;
double double_num_check=9999999999999999999999999999.999999999;
int int_num=0;
double double_num=0.0;
int count=0;
try{
FileInputStream fi=new FileInputStream(fileName);
ObjectInputStream input=new ObjectInputStream(fi);
String word=input.readUTF();
int length=word.length();
for(int i=0;i<length;i++){
if(word.charAt(i)=='i'){
int_num=input.readInt();
System.out.println(int_num);
if(int_num>int_num_check){
int_num_check=int_num;
}
}
else if(word.charAt(i)=='d'){
double_num=input.readDouble();
System.out.println(double_num);
if(double_num<double_num_check){
double_num_check=double_num;
}
}
else{
System.out.println("Error");
System.exit(0);
}
count++;
}
System.out.println("count: "+count);
System.out.println("length "+length);
if(count!=length){
System.out.println("Error in file: Length of string and numbers are not equal");
System.exit(0);
}
String checker=input.readUTF();
if(!checker.equals(null)){
System.out.println("Error");
System.exit(0);
}
input.close();
fi.close();
}
catch(FileNotFoundException e){
System.out.println("Error");
System.exit(0);
}
catch(EOFException e){
System.out.println("Largest integer: "+int_num_check);
System.out.println("Smallest double: "+double_num_check);
System.exit(0);
}
catch(IOException e){
System.out.println("Error");
System.exit(0);
}
}
}
答案 0 :(得分:0)
如果字母数多于数字,则可能到达文件末尾(eof)。在每个文件读取一个数字后检查eof,如果在阅读完所有预期数字之前需要eof,则报告错误。
答案 1 :(得分:0)
我认为可能问题在于您的文件创建方式。尝试使用以下代码创建它:
try {
ObjectOutputStream oos = new ObjectOutputStream(new FileOutputStream("C:/temp/file.txt"));
oos.writeUTF("idid");
oos.writeInt(8);
oos.writeDouble(4.33316);
oos.writeInt(2);
oos.flush();
oos.close();
} catch (Exception ex) {
ex.printStackTrace();
}
然后使用您的代码阅读它,它应该抛出一个EOFException。
答案 2 :(得分:0)
如果你有更多的整数/双精度字母,你的代码将转到EOFException
的捕获,但是你没有关于EOF的代码,但你打印的最大/最小值是某种原因。
因为EOF异常只会在你有更多的字母而不是数字时才会上升(因为你根据word
的长度进行阅读),你应该进入你的
System.out.println("Error in file: Length of string and numbers are not equal");
System.exit(0);