www.久久久久|狼友网站av天堂|精品国产无码a片|一级av色欲av|91在线播放视频|亚洲无码主播在线|国产精品草久在线|明星AV网站在线|污污内射久久一区|婷婷综合视频网站

當前位置:首頁 > 嵌入式 > 嵌入式軟件
[導讀] 1. [代碼]DirTraversal.javapackage com.once;import java.io.File;import java.util.ArrayList;import java.util.LinkedList;/*** 文件夾遍歷* @author once**/public cl

 1. [代碼]DirTraversal.java

package com.once;

import java.io.File;

import java.util.ArrayList;

import java.util.LinkedList;

/**

* 文件夾遍歷

* @author once

*

*/

public class DirTraversal {

//no recursion

public static LinkedList listLinkedFiles(String strPath) {

LinkedList list = new LinkedList();

File dir = new File(strPath);

File file[] = dir.listFiles();

for (int i = 0; i < file.length; i++) {

if (file[i].isDirectory())

list.add(file[i]);

else

System.out.println(file[i].getAbsolutePath());

}

File tmp;

while (!list.isEmpty()) {

tmp = (File) list.removeFirst();

if (tmp.isDirectory()) {

file = tmp.listFiles();

if (file == null)

continue;

for (int i = 0; i < file.length; i++) {

if (file[i].isDirectory())

list.add(file[i]);

else

System.out.println(file[i].getAbsolutePath());

}

} else {

System.out.println(tmp.getAbsolutePath());

}

}

return list;

}

//recursion

public static ArrayList listFiles(String strPath) {

return refreshFileList(strPath);

}

public static ArrayList refreshFileList(String strPath) {

ArrayList filelist = new ArrayList();

File dir = new File(strPath);

File[] files = dir.listFiles();

if (files == null)

return null;

for (int i = 0; i < files.length; i++) {

if (files[i].isDirectory()) {

refreshFileList(files[i].getAbsolutePath());

} else {

if(files[i].getName().toLowerCase().endsWith("zip"))

filelist.add(files[i]);

}

}

return filelist;

}

}

2. [代碼]ZipUtils.java

package com.once;

import java.io.*;

import java.util.ArrayList;

import java.util.Collection;

import java.util.Enumeration;

import java.util.zip.ZipEntry;

import java.util.zip.ZipException;

import java.util.zip.ZipFile;

import java.util.zip.ZipOutputStream;

/**

* Java utils 實現的Zip工具

*

* @author once

*/

public class ZipUtils {

private static final int BUFF_SIZE = 1024 * 1024; // 1M Byte

/**

* 批量壓縮文件(夾)

*

* @param resFileList 要壓縮的文件(夾)列表

* @param zipFile 生成的壓縮文件

* @throws IOException 當壓縮過程出錯時拋出

*/

public static void zipFiles(Collection resFileList, File zipFile) throws IOException {

ZipOutputStream zipout = new ZipOutputStream(new BufferedOutputStream(new FileOutputStream(

zipFile), BUFF_SIZE));

for (File resFile : resFileList) {

zipFile(resFile, zipout, "");

}

zipout.close();

}

/**

* 批量壓縮文件(夾)

*

* @param resFileList 要壓縮的文件(夾)列表

* @param zipFile 生成的壓縮文件

* @param comment 壓縮文件的注釋

* @throws IOException 當壓縮過程出錯時拋出

*/

public static void zipFiles(Collection resFileList, File zipFile, String comment)

throws IOException {

ZipOutputStream zipout = new ZipOutputStream(new BufferedOutputStream(new FileOutputStream(

zipFile), BUFF_SIZE));

for (File resFile : resFileList) {

zipFile(resFile, zipout, "");

}

zipout.setComment(comment);

zipout.close();

}

/**

* 解壓縮一個文件

*

* @param zipFile 壓縮文件

* @param folderPath 解壓縮的目標目錄

* @throws IOException 當解壓縮過程出錯時拋出

*/

public static void upZipFile(File zipFile, String folderPath) throws ZipException, IOException {

File desDir = new File(folderPath);

if (!desDir.exists()) {

desDir.mkdirs();

}

ZipFile zf = new ZipFile(zipFile);

for (Enumeration entries = zf.entries(); entries.hasMoreElements();) {

ZipEntry entry = ((ZipEntry)entries.nextElement());

InputStream in = zf.getInputStream(entry);

String str = folderPath + File.separator + entry.getName();

str = new String(str.getBytes("8859_1"), "GB2312");

File desFile = new File(str);

if (!desFile.exists()) {

File fileParentDir = desFile.getParentFile();

if (!fileParentDir.exists()) {

fileParentDir.mkdirs();

}

desFile.createNewFile();

}

OutputStream out = new FileOutputStream(desFile);

byte buffer[] = new byte[BUFF_SIZE];

int realLength;

while ((realLength = in.read(buffer)) > 0) {[!--empirenews.page--]

out.write(buffer, 0, realLength);

}

in.close();

out.close();

}

}

/**

* 解壓文件名包含傳入文字的文件

*

* @param zipFile 壓縮文件

* @param folderPath 目標文件夾

* @param nameContains 傳入的文件匹配名

* @throws ZipException 壓縮格式有誤時拋出

* @throws IOException IO錯誤時拋出

*/

public static ArrayList upZipSelectedFile(File zipFile, String folderPath,

String nameContains) throws ZipException, IOException {

ArrayList fileList = new ArrayList();

File desDir = new File(folderPath);

if (!desDir.exists()) {

desDir.mkdir();

}

ZipFile zf = new ZipFile(zipFile);

for (Enumeration entries = zf.entries(); entries.hasMoreElements();) {

ZipEntry entry = ((ZipEntry)entries.nextElement());

if (entry.getName().contains(nameContains)) {

InputStream in = zf.getInputStream(entry);

String str = folderPath + File.separator + entry.getName();

str = new String(str.getBytes("8859_1"), "GB2312");

// str.getBytes("GB2312"),"8859_1" 輸出

// str.getBytes("8859_1"),"GB2312" 輸入

File desFile = new File(str);

if (!desFile.exists()) {

File fileParentDir = desFile.getParentFile();

if (!fileParentDir.exists()) {

fileParentDir.mkdirs();

}

desFile.createNewFile();

}

OutputStream out = new FileOutputStream(desFile);

byte buffer[] = new byte[BUFF_SIZE];

int realLength;

while ((realLength = in.read(buffer)) > 0) {

out.write(buffer, 0, realLength);

}

in.close();

out.close();

fileList.add(desFile);

}

}

return fileList;

}

/**

* 獲得壓縮文件內文件列表

*

* @param zipFile 壓縮文件

* @return 壓縮文件內文件名稱

* @throws ZipException 壓縮文件格式有誤時拋出

* @throws IOException 當解壓縮過程出錯時拋出

*/

public static ArrayList getEntriesNames(File zipFile) throws ZipException, IOException {

ArrayList entryNames = new ArrayList();

Enumeration entries = getEntriesEnumeration(zipFile);

while (entries.hasMoreElements()) {

ZipEntry entry = ((ZipEntry)entries.nextElement());

entryNames.add(new String(getEntryName(entry).getBytes("GB2312"), "8859_1"));

}

return entryNames;

}

/**

* 獲得壓縮文件內壓縮文件對象以取得其屬性

*

* @param zipFile 壓縮文件

* @return 返回一個壓縮文件列表

* @throws ZipException 壓縮文件格式有誤時拋出

* @throws IOException IO操作有誤時拋出

*/

public static Enumeration getEntriesEnumeration(File zipFile) throws ZipException,

IOException {

ZipFile zf = new ZipFile(zipFile);

return zf.entries();

}

/**

* 取得壓縮文件對象的注釋

*

* @param entry 壓縮文件對象

* @return 壓縮文件對象的注釋

* @throws UnsupportedEncodingException

*/

public static String getEntryComment(ZipEntry entry) throws UnsupportedEncodingException {

return new String(entry.getComment().getBytes("GB2312"), "8859_1");

}

/**

* 取得壓縮文件對象的名稱

*

* @param entry 壓縮文件對象

* @return 壓縮文件對象的名稱

* @throws UnsupportedEncodingException

*/

public static String getEntryName(ZipEntry entry) throws UnsupportedEncodingException {

return new String(entry.getName().getBytes("GB2312"), "8859_1");

}

/**

* 壓縮文件

*

* @param resFile 需要壓縮的文件(夾)

* @param zipout 壓縮的目的文件

* @param rootpath 壓縮的文件路徑

* @throws FileNotFoundException 找不到文件時拋出

* @throws IOException 當壓縮過程出錯時拋出

*/

private static void zipFile(File resFile, ZipOutputStream zipout, String rootpath)

throws FileNotFoundException, IOException {

rootpath = rootpath + (rootpath.trim().length() == 0 ? "" : File.separator)

+ resFile.getName();

rootpath = new String(rootpath.getBytes("8859_1"), "GB2312");

if (resFile.isDirectory()) {

File[] fileList = resFile.listFiles();

for (File file : fileList) {

zipFile(file, zipout, rootpath);

}

} else {

byte buffer[] = new byte[BUFF_SIZE];

BufferedInputStream in = new BufferedInputStream(new FileInputStream(resFile),

BUFF_SIZE);

zipout.putNextEntry(new ZipEntry(rootpath));

int realLength;

[!--empirenews.page--]

while ((realLength = in.read(buffer)) != -1) {

zipout.write(buffer, 0, realLength);

}

in.close();

zipout.flush();

zipout.closeEntry();

}

}

}

本站聲明: 本文章由作者或相關機構授權發(fā)布,目的在于傳遞更多信息,并不代表本站贊同其觀點,本站亦不保證或承諾內容真實性等。需要轉載請聯系該專欄作者,如若文章內容侵犯您的權益,請及時聯系本站刪除。
換一批
延伸閱讀

上海2025年9月5日 /美通社/ -- 由紐倫堡會展(上海)有限公司舉辦的上海國際嵌入式會議將于 2025 年 10 月 16-17 日在上海世博展覽館舉辦。 此次會議將由三個版塊組成:嵌入式技術會議、汽...

關鍵字: 嵌入式 CE CHINA EMBEDDED

開創(chuàng)中國文旅產業(yè)AI深度應用新樣本 北京2025年8月22日 /美通社/ -- 以下為來自億歐的報道: 8月22日,桂林旅游股份有限公司旗下銀子巖景區(qū)聯合合作伙伴正式發(fā)布全球首款AI伴游財神玩具 —— "五...

關鍵字: AI IP 數字化 硬件

馬來西亞吉隆坡2025年8月14日 /美通社/ -- 全球云通信平臺Infobip今日發(fā)布最新報告《AI優(yōu)勢:領先品牌如何在全天候客戶世界中蓬勃發(fā)展》(The AI Advantage: How Leading...

關鍵字: 人工智能 IP 智能體 IDC

?- CAS SciFinder集成變革性的新型科學智能AI功能,以提高研發(fā)效率和促進創(chuàng)新 開創(chuàng)性的解決方案能夠更快速地為科學家提供可操作的答案,從而加速科學發(fā)現 俄亥俄...

關鍵字: 集成 AI FINDER IP

其他電腦(比如安卓手機/平板電腦)的屏幕壞了,你可能想在安排維修之前緊急訪問一些東西。你可以使用android的USB OTG功能(是的,幾乎每個android都支持這個功能,你可以將鼠標和鍵盤連接到它)。

關鍵字: USB 鼠標 Android 樹莓派

RISC-V生態(tài)的快速發(fā)展源于業(yè)界對這一開放指令集體系結構的共同信念,然而其發(fā)展并非一帆風順。企業(yè)在推廣RISC-V時面臨諸多現實問題,包括來自客戶客戶的質疑、與Arm的差異化價值、軟件移植的難度等等。但這些挑戰(zhàn)正在逐步...

關鍵字: RISC-V CPU 香山 昆明湖 IP AI

TCP/IP(Transmission Control Protocol/Internet Protocol,傳輸控制協議/網際協議)是指能夠在多個不同網絡間實現信息傳輸的協議簇。TCP/IP協議不僅僅指的是TCP 和I...

關鍵字: TCP IP

北京市中國國際展覽中心(順義館)先進制造館 W2 展館 D07 展位 作為鏈博會先進制造鏈專業(yè)委員會主席單位,發(fā)揮"鏈主"引領和賦能作用 集中呈現西門子覆蓋產品...

關鍵字: 西門子 BSP 數字化 CE

北京 2025年7月9日 /美通社/ -- 在人工智能行業(yè)競爭日益白熱化的當下,思必馳科技股份有限公司(下稱"思必馳")重啟科創(chuàng)板 IPO的消息一出,便引發(fā)了廣泛關注。這家成立于2007年的企業(yè),堪...

關鍵字: 思必馳 IP AI 模型

廣州 2025年7月4日 /美通社/ -- 日前,在德國慕尼黑機器人及自動化技術展覽會(Automatica)期間,國際獨立第三方檢測、檢驗和認證機構德國萊茵TÜ...

關鍵字: 自動化 CE 工業(yè)機器 指令
關閉