您好,登錄后才能下訂單哦!
數據輸入流,讓應用程序讀取原始java數據類型從底層輸入流中的一個獨立于機器的方式。一個應用程序使用一個數據輸出流來寫數據,以后可以通過數據輸入流讀取。
輸入流是不一定安全的多線程訪問。線程安全是可選的,是在這個類中的方法的用戶的責任。
寫基本數據類型
dos.writeInt(45) ;
dos.writeChar('中');
dos.writeUTF("你好");
讀取數據
int a = dis.readInt() ;
System.out.println(a);
char ch = dis.readChar() ;
System.out.println(ch);
String str = dis.readUTF() ;
System.out.println(str);
public class MyTest {
public static void main(String[] args) throws IOException {
// 數據輸入輸出流:特點就是能夠讀寫基本數據類型
// writeData();
//注意讀取的順序,剛才怎么寫的,就怎么讀
DataInputStream in = new DataInputStream(new FileInputStream("a.txt"));
boolean b = in.readBoolean();
double v = in.readDouble();
int i = in.readInt();
char c = in.readChar();
String s = in.readUTF();
System.out.println(b);
System.out.println(v);
System.out.println(c);
System.out.println(s);
in.close();
return;
}
private static void writeData() throws IOException {
// 數據輸入輸出流:特點就是能夠讀寫基本數據類型
DataOutputStream out = new DataOutputStream(new FileOutputStream("a.txt"));
out.writeBoolean(true);
out.writeDouble(3.14);
out.writeInt(1000);
out.writeChar('a');
out.writeUTF("薛曉燕");
out.flush();
out.close();
}
}
ByteArrayOutputStream out = new ByteArrayOutputStream();
out.write("今天是個好日子".getBytes());
out.write("今天我要嫁給你了".getBytes());
//取出他緩存中的數據
byte[] bytes = out.toByteArray();
String s = new String(bytes);
System.out.println(s);
String s2 = out.toString();
System.out.println(s);
out.close();//此流無需關閉
}
}
ByteArrayInputStream
ByteArrayOutputStream
此流關閉無效,所以無需關閉
ByteArrayOutputStream out = new ByteArrayOutputStream();
out.write("今天是個好日子".getBytes());
out.write("今天我要嫁給你了".getBytes());
//取出他緩存中的數據
byte[] bytes = out.toByteArray();
String s = new String(bytes);
System.out.println(s);
String s2 = out.toString();
System.out.println(s);
out.close();//此流無需關閉
}
}
CharArrayWrite
CharArrayReader
public class MyTest4 {
public static void main(String[] args) throws IOException {
//操作字符數組
//CharArrayWrite
//CharArrayReader
CharArrayWriter charArrayWriter =new CharArrayWriter();
charArrayWriter.write("abcd");
charArrayWriter.write(new char[]{'我','愛','你'});
char[] chars = charArrayWriter.toCharArray();
String s1 = new String(chars);
String s2 = String.valueOf(chars);
System.out.println(s1);
System.out.println(s2);
String s = charArrayWriter.toString();
System.out.println(s);
}
}
StringWriter
StringReader
public class MyTest5 {
public static void main(String[] args) {
//操作字符串
// StringWriter
//StringReader
StringWriter stringWriter = new StringWriter();
stringWriter.write("abc");
stringWriter.write("呵呵呵呵呵");
String s = stringWriter.toString();
System.out.println(s);
}
}
一個 ByteArrayInputStream包含一個內部緩沖區包含的字節,可以從流中讀取。一個內部計數器跟蹤下一個字節是由 read提供的方法。
關閉ByteArrayInputStream沒有影響。這個類中的方法可以在流一直沒有產生一個IOException閉叫.
a: 打印流只能操作目的地,不能操作數據源(不能進行讀取數據)
- b: 可以操作任意數據類型的數據 調用print() 方法可以寫任意數據類型
c: 如果我們啟用自動刷新,那么在調用println、printf 或 format 方法中的一個方法的時候,會完成自動刷新
/**
通過以下構造創建對象 能夠啟動自動刷新 然后調用println、printf 或 format 方法中的一個方法的時候,會完成自動刷新
d: 這個流可以直接對文件進行操作(可以直接操作文件的流: 就是構造方法的參數可以傳遞文件或者文件路徑)
public class MyTest {
public static void main(String[] args) throws IOException {
//打印流:只是寫,不操作源文件 就是單個的一個流,只用來輸出
//字節打印流 PrintStream
//字符打印流 PrintWriter
PrintStream out2 = System.out; //他關聯的設備是屏幕
out2.println("abc");
//這種方式關聯的是文件
PrintStream stream = new PrintStream(new File("c.txt"));
stream.println("abc");
stream.println("abc");
stream.println("abc");
stream.println("abc");
stream.println("abc");
stream.println("abc");
stream.println("abc");
stream.println("abc");
stream.println("abc");
stream.write("welcome".getBytes());
stream.close();
}
}
PrintWriter實現自動刷新和換行
PrintWriter pw = new PrintWriter(new FileWriter("printWriter2.txt") , true) ;
pw.println(true) ;
pw.println(100) ;
pw.println("中國") ;
public class MyTest4 {
public static void main(String[] args) throws IOException {
//PrintWriter(OutputStream out, boolean autoFlush)
//通過現有的 OutputStream 創建新的 PrintWriter。
PrintWriter pw = new PrintWriter(new FileOutputStream("cc.txt"), true);
// pw.write("abc");
// 如果啟用了自動刷新,則只有在調用 println、printf 或 format 的其中一個方法時才可能完成此操作
pw.println("abc");
pw.flush();
pw.close();
}
}
在System這個類中存在兩個靜態的成員變量:
public static final InputStream in: 標準輸入流, 對應的設備是鍵盤
public static final PrintStream out: 標準輸出流 , 對應的設備就是顯示器
System.in的類型是InputStream.
System.out的類型是PrintStream是OutputStream的孫子類FilterOutputStream 的子類.
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
public class MyTest {
public static void main(String[] args) throws IOException {
//鍵盤錄入的第二種方式
//Scanner sc = new Scanner(System.in);
BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
while (true){
System.out.println("請輸入字符串");
String s = reader.readLine();
System.out.println(s);
//自定義一個結束標記
if("886".equals(s)){
break;
}
}
}
}
輸出語句用字符緩沖流改進
/**
獲取System下的in成員變量
*/
InputStream in = System.in ;
/**
要對其進行轉換,那么就需要使用轉換流. 需要使用InputStreamReader
*/
RandomAccessFile概述 最大特點 能讀能寫
RandomAccessFile類不屬于流,是Object類的子類。但它融合了InputStream和OutputStream的功能。
支持對隨機訪問文件的讀取和寫入。
RandomAccessFile的父類是Object , 這個流對象可以用來讀取數據也可以用來寫數據.可以操作任意數據類型的數據.
所謂的序列化:就是把對象通過流的方式存儲到文件中.注意:此對象 要重寫Serializable 接口才能被序列化
反序列化:就是把文件中存儲的對象以流的方式還原成對象
序列化流: ObjectOutputStream
反序列化流: ObjectInputStream
像這樣一個接口中如果沒有方法,那么這樣的接口我們將其稱之為標記接口(用來給類打標記的,相當于豬肉身上蓋個章)
一個對象可以被序列化的前提是這個對象對應的類必須實現Serializable接口
public class MyTest6 {
public static void main(String[] args) throws Exception{
ObjectInputStream stream = new ObjectInputStream(new FileInputStream("list.txt"));
Object obj = stream.readObject();
ArrayList<Student> list= (ArrayList<Student>) obj;
Student student = list.get(2);
System.out.println(student.getName()+"=="+student.getAge());
}
}
class Student implements Serializable {
private static final long serialVersionUID = 5760262756605700379L;
//生成一個類的唯一id
private String name;
//transient 修飾成員變量后,此成員變量的就不會序列化到文件中
//transient private int age;
private int age;
public Student() {
}
public Student(String name, int age) {
this.name = name;
this.age = age;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public int getAge() {
return age;
}
public void setAge(int age) {
this.age = age;
}
}
使用transient關鍵字聲明不需要序列化的成員變量
private transient int age ;// 可以阻止成員變量的序列化使用transient
的 Properties類代表一個持久的特性。的 Properties可以保存到流或流中加載。屬性列表中的每個鍵和它的相應值是一個字符串。
屬性列表可以包含另一個屬性列表作為它的“默認”;如果在原始屬性列表中沒有找到屬性鍵,則搜索該第二個屬性列表。
public Object setProperty(String key,String value)
public String getProperty(String key)
public Set<String> stringPropertyNames()
Properties和IO流進行配合使用:
public class MyTest2 {
public static void main(String[] args) throws IOException {
Properties properties = new Properties();
properties.setProperty("武大", "金蓮");
properties.setProperty("武大2", "金蓮2");
properties.setProperty("武大3", "金蓮3");
//把集合中的數據,保存到文件中去
properties.store(new FileWriter("data.properties"),null);
}
}
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。