Mega Code Archive

 
Categories / Java / File Input Output
 

Data IO Test

/* From http://java.sun.com/docs/books/tutorial/index.html */ /*  * Copyright (c) 2006 Sun Microsystems, Inc. All Rights Reserved.  *  * Redistribution and use in source and binary forms, with or without  * modification, are permitted provided that the following conditions are met:  *  * -Redistribution of source code must retain the above copyright notice, this  *  list of conditions and the following disclaimer.  *  * -Redistribution in binary form must reproduce the above copyright notice,  *  this list of conditions and the following disclaimer in the documentation  *  and/or other materials provided with the distribution.  *  * Neither the name of Sun Microsystems, Inc. or the names of contributors may  * be used to endorse or promote products derived from this software without  * specific prior written permission.  *  * This software is provided "AS IS," without a warranty of any kind. ALL  * EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING  * ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE  * OR NON-INFRINGEMENT, ARE HEREBY EXCLUDED. SUN MIDROSYSTEMS, INC. ("SUN")  * AND ITS LICENSORS SHALL NOT BE LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE  * AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THIS SOFTWARE OR ITS  * DERIVATIVES. IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST  * REVENUE, PROFIT OR DATA, OR FOR DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL,  * INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE THEORY  * OF LIABILITY, ARISING OUT OF THE USE OF OR INABILITY TO USE THIS SOFTWARE,  * EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.  *  * You acknowledge that this software is not designed, licensed or intended  * for use in the design, construction, operation or maintenance of any  * nuclear facility.  */ import java.io.DataInputStream; import java.io.DataOutputStream; import java.io.EOFException; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.IOException; public class DataIOTest {   public static void main(String[] args) throws IOException {     // write the data out     DataOutputStream out = new DataOutputStream(new FileOutputStream(         "invoice1.txt"));     double[] prices = { 19.99, 9.99, 15.99, 3.99, 4.99 };     int[] units = { 12, 8, 13, 29, 50 };     String[] descs = { "Java T-shirt", "Java Mug", "Duke Juggling Dolls",         "Java Pin", "Java Key Chain" };     for (int i = 0; i < prices.length; i++) {       out.writeDouble(prices[i]);       out.writeChar('\t');       out.writeInt(units[i]);       out.writeChar('\t');       out.writeChars(descs[i]);       out.writeChar('\n');     }     out.close();     // read it in again     DataInputStream in = new DataInputStream(new FileInputStream(         "invoice1.txt"));     double price;     int unit;     StringBuffer desc;     double total = 0.0;     try {       while (true) {         price = in.readDouble();         in.readChar(); // throws out the tab         unit = in.readInt();         in.readChar(); // throws out the tab         char chr;         desc = new StringBuffer(20);         char lineSep = System.getProperty("line.separator").charAt(0);         while ((chr = in.readChar()) != lineSep)           desc.append(chr);         System.out.println("You've ordered " + unit + " units of "             + desc + " at $" + price);         total = total + unit * price;       }     } catch (EOFException e) {     }     System.out.println("For a TOTAL of: $" + total);     in.close();   } }