真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

JAVA輸入輸出流詳解(H)

*/
public String loadFileCon(String fileName,File file,String type){
String fileContent = "",conTemp = "";
byte[] fileConfByte;
try{[@more@]//找到要顯示的文件入口,然后讀取通過文本格式讀取文件內(nèi)容
zipFile = new ZipInputStream(new FileInputStream(file));
//讀取文件內(nèi)容
while ((entry = zipFile.getNextEntry()) != null){
if (entry.getName().equals(fileName)){
//通過字節(jié)讀取文件內(nèi)容
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字符讀取文件內(nèi)容
BufferedReader in = new BufferedReader(new InputStreamReader(zipFile));
while ((conTemp = in.readLine()) != null){
fileContent = fileContent + conTemp + " ";
}
}
}
}
//關(guān)閉文件zip
zipFile.closeEntry();
zipFile.close();
//返回
return fileContent;

}catch(IOException e){
System.out.println("讀取文件內(nèi)容失?。。。?/font>");
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);
}
//顯示文件目錄,顯示選擇的文件的內(nèi)容
//獲得真實文件名和顯示文件名數(shù)組
ZipFileHandle zipFile = new ZipFileHandle(file);
showFileArr = zipFile.getFileNameList("sh",file);
realFileArr = zipFile.getFileNameList("gr",file);
//打印顯示文件名數(shù)組
int i = 0;
while (i < showFileArr.length){
System.out.println(showFileArr[i]);
i++;
}
//通過用戶輸入獲得需要顯示的文件
System.out.println("Plase choose file num?。。?/font>");
choose = Integer.parseInt(userInput.readLine());
if ((choose <0)||(choose > showFileArr.length)){
System.out.println("Plase choose file num retry?。?!");
choose = Integer.parseInt(userInput.readLine());
}
//獲得用戶選擇的文件的內(nèi)容
fileContent = zipFile.loadFileCon(realFileArr[choose],file,"Byte");
System.out.println(fileContent);

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

創(chuàng)新互聯(lián)公司堅持“要么做到,要么別承諾”的工作理念,服務(wù)領(lǐng)域包括:成都做網(wǎng)站、成都網(wǎng)站建設(shè)、成都外貿(mào)網(wǎng)站建設(shè)、企業(yè)官網(wǎng)、英文網(wǎng)站、手機(jī)端網(wǎng)站、網(wǎng)站推廣等服務(wù),滿足客戶于互聯(lián)網(wǎng)時代的宿豫網(wǎng)站設(shè)計、移動媒體設(shè)計的需求,幫助企業(yè)找到有效的互聯(lián)網(wǎng)解決方案。努力成為您成熟可靠的網(wǎng)絡(luò)建設(shè)合作伙伴!


網(wǎng)站欄目:JAVA輸入輸出流詳解(H)
URL分享:http://weahome.cn/article/ihjsdh.html

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部