Java uses DataInputStream to write data to a file, using FileReader to read the demo __java

Source: Internet
Author: User

Java io is really confusing, since there are FileWriter can write the character stream, why create DataOutputStream can also input character flow to the file. The following demo shows that files created by DataOutputStream can be read by FileReader.


Package ZC;
Import java.io.*;

public class Test {public

	void stream () throws ioexception{
		
		String s = "Hello world!";
		DataOutputStream OS = 
				new DataOutputStream (New FileOutputStream ("D:\\abcde.txt"));
		Os.writebytes (s);
		
		FileReader fd = new FileReader ("D:\\abcde.txt");
		
		char[] Ch =new char[1024];
		int lenth;
		
		while ((lenth = Fd.read (ch))!=-1)
		{
			System.out.println (new String (Ch,0,lenth));
		}
	public static void Main (string[] args) throws IOException {
		Test t = new Test ();
		T.stream ();

	}




Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.