亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Java常見IO面試題有哪些

發布時間:2021-10-15 13:50:37 來源:億速云 閱讀:186 作者:小新 欄目:編程語言

小編給大家分享一下Java常見IO面試題有哪些,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

1:什么是流?

字符串分解==============OutStream==========>write()方法寫到文件中

2:描述I/O流的基本接口和類的結構

InputStream

OutputStream

3:代碼示例:如何使用URL流來進行輸入輸出

try {
 
  imageSource = new URL("http://mysite.com/~info");
 
} catch (MalformedURLException e) {
 
}

4:什么是Unicode?

是一種字符的編碼方式

5:代碼示例:如何使用Reader和Writer來進行輸入輸出

InputStreamReader  ir = new InputStreamReader(System.in);
 
OutStreamReader  or = new OutStreamReader(System.in);

6:什么是可序列化?如何實現可序列化?

表示一個數據可以按流式輸出

實現java.io.Serializable接口

7:代碼示例:如何讀寫對象流

//讀
 
try {
 
String str = "123";
 
FileOutputStream f = new FileOutputStream("test.txt");
 
ObjectOutputStream s = new ObjectOutputStream(f);
 
s.writeObject(str);
 
f.close();
 
}catch(Exception e) {
 
e.printStackTrace();
 
}
//寫
 
try {
 
FileInputStream f = new FileInputStream("test.txt");
 
ObjectInputStream s = new ObjectInputStream(f);
 
str =(String)s.readObject();
 
f.close();
 
}catch(Exception e){
 
e.printStackTrace();
 
}

8:簡述File類的基本功能

處理文件和獲取文件信息,文件或文件夾的管理

除了讀寫文件內容其他的都可以做

9:代碼示例:如何使用隨機文件讀寫類來讀寫文件內容  

RW表示文件時可讀寫的
 
讀:
 
try{
 
    RandomAccessFile f = new RandomAccessFile("test.txt", "rw");
 
    long len = 0L;
 
    long allLen = f.length();
 
    int i = 0;
 
    while (len < allLen) {
 
      String s = f.readLine();
 
      if (i > 0) {
 
          col.add(s);
 
      }
 
      i++;
 
      //游標
 
      len = f.getFilePointer();
 
    }
 
  }catch(Exception err){
 
    err.printStackTrace();
 
  }
 
  
 
  寫:
 
  
 
  try{
 
    RandomAccessFile f = new RandomAccessFile("test.txt", "rw");
 
    StringBuffer buffer = new StringBuffer("\n");
 
    Iterator it = col.iterator();
 
    while (it.hasNext()) {
 
      buffer.append(it.next() + "\n");
 
    }
 
    f.writeUTF(buffer.toString());
 
  }catch(Exception err){
 
     err.printStackTrace();
 
  }

10:代碼示例:如何使用流的基本接口來讀寫文件內容

try{
 
DataInputStream in =
 
new DataInputStream(
 
new BufferedInputStream(
 
new FileInputStream("Test.java")
 
)
 
);
 
while ((currentLine = in.readLine()) != null){
 
System.out.println(currentLine);
 
}
 
}catch (IOException e){
 
System.err.println("Error: " + e);
 
}

以上是“Java常見IO面試題有哪些”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

奉化市| 松阳县| 政和县| 固镇县| 璧山县| 永登县| 晋州市| 龙江县| 阿勒泰市| 镇雄县| 大足县| 卓资县| 县级市| 平和县| 洛川县| 北辰区| 法库县| 襄城县| 连州市| 洛扎县| 三河市| 哈巴河县| 新和县| 平乡县| 若羌县| 桑日县| 横山县| 洞口县| 临邑县| 赤峰市| 汶川县| 海阳市| 乳源| 夹江县| 克东县| 赤城县| 小金县| 北安市| 巴马| 黎川县| 三原县|