I am trying to read file,but it is reading only on my machine,it is not working on another machine.Here is my code..
FileInputStream fstream=new FileInputStream("/path of myfile/User.txt");
DataInputStream in = new DataInputStream(fstream);
BufferedReader br = new BufferedReader(new InputStreamReader(in));
String str;
while ((str = br.readLine()) != null) {
System.out.println(str);
}
Please help me,how to read file on another machine as well,what changes should I make?
DataInputStreamis completely redundant. You need only to construct theInputStreamReaderon theFileInputStream. Also, you forgot to specify the encoding for theInputStreamReader, so it will use the platform default (that is, a random) encoding, which is double-plus ungood. – Christoffer Hammarström Nov 7 '11 at 16:42