日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

java int 包_int readInt()

發(fā)布時間:2023/12/13 编程问答 32 豆豆
生活随笔 收集整理的這篇文章主要介紹了 java int 包_int readInt() 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.

int readInt()

描述 (Description)

java.io.ObjectInputStream.readInt()方法讀取32位int。

聲明 (Declaration)

以下是java.io.ObjectInputStream.readInt()方法的聲明。public int readInt()

參數(shù) (Parameters)

NA

返回值 (Return Value)

此方法不返回值。

異常 (Exception)EOFException - 如果到達文件末尾。

IOException - 如果發(fā)生I/O錯誤。

例子 (Example)

以下示例顯示了java.io.ObjectInputStream.readInt()方法的用法。package com.iowiki;

import java.io.*;

public class ObjectInputStreamDemo {

public static void main(String[] args) {

int i = 319874;

try {

// create a new file with an ObjectOutputStream

FileOutputStream out = new FileOutputStream("test.txt");

ObjectOutputStream oout = new ObjectOutputStream(out);

// write something in the file

oout.writeInt(i);

oout.writeInt(1653984);

oout.flush();

// create an ObjectInputStream for the file we created before

ObjectInputStream ois = new ObjectInputStream(new FileInputStream("test.txt"));

// read and print an int

System.out.println("" + ois.readInt());

// read and print an int

System.out.println("" + ois.readInt());

} catch (Exception ex) {

ex.printStackTrace();

}

}

}

讓我們編譯并運行上面的程序,這將產(chǎn)生以下結(jié)果 -319874

1653984

總結(jié)

以上是生活随笔為你收集整理的java int 包_int readInt()的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯,歡迎將生活随笔推薦給好友。