OverviewIO streams are used to process data transfer between devicesHow Java operates on data by streamingThe objects that Java uses to manipulate the flow are in the IO packageStream-by-operation data is divided into: byte stream and character streamFlow is divided into: input stream and output
character stream to wrap the character stream, the surface is a stream of characters, in fact, the bottom is the byte stream (standard output stream)7 //OutputStreamWriter OSW = new OutputStreamWriter (OS);8 //bufferedwriter bw = new Buffered
The IO stream of Java is divided into character stream (Reader,writer) and Byte stream (Inputstream,outputstream), and the byte stream is the name stream that reads the contents of the file into the array of bytes and then outputs
.
Console input and output:Version after JDK 5 We can also use the Java Scanner class to get input from the console.Read and write files:FileInputStreamMethod 1: You can use the file name of the string type to create an input stream object to read the fileNew FileInputStream ("C:/java/hello");Method 2: You can also use a file object to create an input
2017-11-05 17:48:17IO streams in Java are categorized into two types, one is byte stream and the other is character stream. The character stream appears to simplify the read and write operations of text data. If the file you are manipulating is a text file, using a character stream
Label:1. mysql build library, build table 2. Preparing the data file Cpu.txt 1447836374319,169,0,01447836375346,498,0,01447836376346,250,0,01447836377347,0,0,01447836378347,497,0,01447836379347,0,0,01447836380347,498,0,01447836381348,0,0,01447836382348,498,0,01447836383348,0,0,01447836384348,248,0,01447836385348,0,0,0 3. Collect data logs to MySQL Description of the class to use: 3.1 file gets a handle to the document that represents a local file. 3.2
Java learning notes 43 (brief introduction to the print stream and IO stream tools) and learning notes
Print stream:
There are two classes: PrintStream and PrintWriter. The methods of the two classes are the same. The difference is that the constructor
PrintStream: constructor: receives the File type, receives the stri
Byte Stream and character streamByte stream can handle all types of data (pictures, videos, etc.), the corresponding class in Java is "stream" End 1 bytes = 8 bits binary = The specific storage space character stream can only handle the data of plain text, the corresponding
The last time we used a byte stream, there was a character stream, the last time we talked about how to tell which stream to use, and if Notepad could read it, use a character stream, or use a byte stream. Using a character stream
Java Tour (24)--i/o stream, character stream, filewriter,ioexception, file continuation, FileReader, small exercise
The Java tour is also written more than 20, we finally reached the I/O today. If you beginner, do not understand the IO stream, you can look at slowly
deserialization.Object flow mainly includes: ObjectInputStream and ObjectOutputStreamHow to implement serialization and deserialization/*OutputStreamWriter is mainly to convert the output stream of a byte stream into a character output flow*/ImportJava.io.*; Public classoutputstreamwritertest01{ Public Static voidMain (string[] args) {BufferedWriter bw=NULL; Try{ //byte output
Buffer stream of java IO stream (reprinted), javaioJava buffer streams do not provide IO functions. They only increase efficiency by adding buffering to other streams, such as packaging other streams. When files or other targets are frequently read or written, the efficiency is low and the efficiency is poor. In this case, the buffer
The byte stream processing unit is two bytes of Unicode characters, operating characters, character arrays or strings respectively, while the byte stream processing unit is one byte, operating byte and byte array. Therefore, the compaction stream is a character that is converted from a Java virtual machine to a Unicode
Java core programming-byte stream of IO stream (2), javaio
1. byte stream
A 1.1-byte stream is a stream that operates byte. Byte streams can operate on any data, such as media data, music, movies, and images. Of course, they can a
Java NiO scatter/collectJava NiO comes with built-in scatter/gather support. Scatter/collect is a concept used in the process of reading and writing channels.Scattering from a channel reads a read operation that reads data into multiple buffers. Therefore, the data can be "scattered" from the channel into multiple buffers.A write to a channel is a write operation that writes data from multiple buffers to a
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.