please help in following java code, I have to write 121212 ten times in poll.txt file but when I open poll.txt file it shows me |||||||||| output
import java.io.*;
class Byte{
public static void main(String args[]) throws IOException {
try{FileOutputStream f=new FileOutputStream("poll.txt");
for(int I=0;i<10;i++)
f.write(121212);
f.close();
}catch(Exception e)
{
}
}
}