91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

JAVA輸入輸出流詳解(H)

發布時間:2020-08-06 19:31:47 來源:ITPUB博客 閱讀:131 作者:lotuszm 欄目:編程語言
*/
public String loadFileCon(String fileName,File file,String type){
String fileContent = "",conTemp = "";
byte[] fileConfByte;
try{
[@more@]//找到要顯示的文件入口,然后讀取通過文本格式讀取文件內容
zipFile = new ZipInputStream(new FileInputStream(file));
//
讀取文件內容
while ((entry = zipFile.getNextEntry()) != null){
if (entry.getName().equals(fileName)){
//
通過字節讀取文件內容
if (type.equals("Byte")){
fileConfByte = new byte[(int)entry.getSize()];
DataInputStream reader = new DataInputStream(zipFile);
reader.readFully(fileConfByte,0,(int)entry.getSize());
fileContent = new String(fileConfByte);
}else if ((type.equals("Str"))){
//
通過unicode字符讀取文件內容
BufferedReader in = new BufferedReader(new InputStreamReader(zipFile));
while ((conTemp = in.readLine()) != null){
fileContent = fileContent + conTemp + " ";
}
}
}
}
//
關閉文件zip
zipFile.closeEntry();
zipFile.close();
//
返回
return fileContent;

}catch(IOException e){
System.out.println("
讀取文件內容失敗!!!");
e.printStackTrace();
return null;
}

}

/**
*
演示方法
*/
public static void main(String args[]){
String filePath;
String[] showFileArr;
String[] realFileArr;
String fileContent;
int choose;
//
通過用戶獲得文件路徑和文件名
try{
BufferedReader userInput = new BufferedReader(new InputStreamReader(System.in));
System.out.println("Plase zip file path and name
!!!");
filePath = userInput.readLine();
File file = new File(filePath);
while (!(file.exists())) {
System.out.println("Plase input right path again: ");
filePath = userInput.readLine();
file = new File(filePath);
}
//
顯示文件目錄,顯示選擇的文件的內容
//
獲得真實文件名和顯示文件名數組
ZipFileHandle zipFile = new ZipFileHandle(file);
showFileArr = zipFile.getFileNameList("sh",file);
realFileArr = zipFile.getFileNameList("gr",file);
//
打印顯示文件名數組
int i = 0;
while (i < showFileArr.length){
System.out.println(showFileArr[i]);
i++;
}
//
通過用戶輸入獲得需要顯示的文件
System.out.println("Plase choose file num
!!!");
choose = Integer.parseInt(userInput.readLine());
if ((choose <0)||(choose > showFileArr.length)){
System.out.println("Plase choose file num retry
!!!");
choose = Integer.parseInt(userInput.readLine());
}
//
獲得用戶選擇的文件的內容
fileContent = zipFile.loadFileCon(realFileArr[choose],file,"Byte");
System.out.println(fileContent);

}catch(Exception e){
System.out.println("
測試程序出錯!!!");
e.printStackTrace();
}
}
}

向AI問一下細節

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

AI

南昌市| 白城市| 赫章县| 阿拉善盟| 德庆县| 赤壁市| 仙居县| 娄底市| 宁都县| 疏附县| 石门县| 黄浦区| 贞丰县| 资讯| 西乌珠穆沁旗| 洛浦县| 克东县| 巴楚县| 全椒县| 青川县| 渭南市| 许昌市| 乐业县| 镇原县| 安塞县| 崇明县| 山东| 福鼎市| 岳西县| 山东省| 汪清县| 珲春市| 成安县| 青河县| 辰溪县| 湖州市| 商南县| 德庆县| 台东县| 东台市| 渝中区|