import java.io.*;
public class Dataio {
public static void main(String args[]) throws IOException {
DataInputStream dataIS = new DataInputStream(new FileInputStream("stdinfo.txt"));
DataOutputStream dataOS = new DataOutputStream(new FileOutputStream("newstdinfo.txt"));
// manipulate the student information from files
String str;
while ((str = dataIS.readLine()) != null) {
String upper = str.toUpperCase();
System.out.println(upper);
dataOS.writeBytes(upper + " ,");
}
dataIS.close();
dataOS.close();
}
}
Wednesday, 12 August 2015
Refine the student manager program to manipulate the student information from files by using the DataInputStream and DataOutputStream. Assume suitable data
Labels:
Java
Subscribe to:
Post Comments (Atom)
nice
ReplyDeleteNice program
ReplyDelete