-4

データ出力ストリームを使用してJavaでファイルに書き込むと、float値に余分な文字が含まれます:

DataOutputStream writer = new DataOutputStream(new FileOutputStream(fileName));
String output ="This part has no extra characters" 
writer.writeBytes(output);
writer.writeFloat(entry.getValue().floatValue());
writer.writeBytes("Neither does this. Only the float has extra characters which are     visible in vim and not visible when I cat the file\n");

float 値から余分な文字を削除するにはどうすればよいですか?

4

1 に答える 1