日本黄色一级经典视频|伊人久久精品视频|亚洲黄色色周成人视频九九九|av免费网址黄色小短片|黄色Av无码亚洲成年人|亚洲1区2区3区无码|真人黄片免费观看|无码一级小说欧美日免费三级|日韩中文字幕91在线看|精品久久久无码中文字幕边打电话

當(dāng)前位置:首頁 > 嵌入式 > 嵌入式軟件
[導(dǎo)讀] 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 實現(xiàn)的Zip工具

*

* @author once

*/

public class ZipUtils {

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

/**

* 批量壓縮文件(夾)

*

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

* @param zipFile 生成的壓縮文件

* @throws IOException 當(dāng)壓縮過程出錯時拋出

*/

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 當(dāng)壓縮過程出錯時拋出

*/

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 解壓縮的目標(biāo)目錄

* @throws IOException 當(dāng)解壓縮過程出錯時拋出

*/

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 目標(biāo)文件夾

* @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;

}

/**

* 獲得壓縮文件內(nèi)文件列表

*

* @param zipFile 壓縮文件

* @return 壓縮文件內(nèi)文件名稱

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

* @throws IOException 當(dāng)解壓縮過程出錯時拋出

*/

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;

}

/**

* 獲得壓縮文件內(nèi)壓縮文件對象以取得其屬性

*

* @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 當(dāng)壓縮過程出錯時拋出

*/

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();

}

}

}

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

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

關(guān)鍵字: 嵌入式 CE CHINA EMBEDDED

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

關(guān)鍵字: AI IP 數(shù)字化 硬件

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

關(guān)鍵字: 人工智能 IP 智能體 IDC

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

關(guān)鍵字: 集成 AI FINDER IP

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

關(guān)鍵字: USB 鼠標(biāo) Android 樹莓派

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

關(guān)鍵字: RISC-V CPU 香山 昆明湖 IP AI

TCP/IP(Transmission Control Protocol/Internet Protocol,傳輸控制協(xié)議/網(wǎng)際協(xié)議)是指能夠在多個不同網(wǎng)絡(luò)間實現(xiàn)信息傳輸?shù)膮f(xié)議簇。TCP/IP協(xié)議不僅僅指的是TCP 和I...

關(guān)鍵字: TCP IP

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

關(guān)鍵字: 西門子 BSP 數(shù)字化 CE

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

關(guān)鍵字: 思必馳 IP AI 模型

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

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