Total members 11890 |It is currently Fri Apr 19, 2024 6:43 am Login / Join Codemiles

Java

C/C++

PHP

C#

HTML

CSS

ASP

Javascript

JQuery

AJAX

XSD

Python

Matlab

R Scripts

Weka





Write and Read to File In Java Code implementation Example
java code
import java.io.*;

public class DataIOTest {
public static void main(String[] args) throws IOException {

//File to start in
DataOutputStream out = new DataOutputStream(new
FileOutputStream("main.txt"));

double[] prices = { 12.45, 3.54, 23.53, 6.75, 2.53 };
int[] units = { 12, 8, 13, 29, 50 };
String[] descs = { " T-shirt1",
"T-shirt2",
"T-shirt3",
"T-shirt4",
"T-shirt5" };

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("main.txt"));

double price;
int unit;
String desc;
double total = 0.0;

try {
while (true) {
price = in.readDouble();
in.readChar(); // skip the tab
unit = in.readInt();
in.readChar(); // skip the tab
desc = in.readLine();
System.out.println("Order " +
unit + " units of " +
desc + " at $" + price);
total = total + unit * price;
}
} catch (EOFException e) {
}
System.out.println("Total: $" + total);
in.close();
}
}




_________________
M. S. Rakha, Ph.D.
Queen's University
Canada


Author:
Mastermind
User avatar Posts: 2715
Have thanks: 74 time
Post new topic Reply to topic  [ 1 post ] 

  Related Posts  to : Write and Read to File In Java Example
 Read and Write to file using ASP     -  
 Read and write CSV file     -  
 File write read     -  
 How to read and write to CSV file from python     -  
 Read double values type from file in java     -  
 Write to file using php     -  
 Write Vector list to File     -  
 Read csv file     -  
 read from file in C++     -  
 File read by char     -  



Topic Tags

Java Files and I/O






Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group
All copyrights reserved to codemiles.com 2007-2011
mileX v1.0 designed by codemiles team
Codemiles.com is a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a means for sites to earn advertising fees by advertising and linking to Amazon.com