當前位置: 首頁>>代碼示例>>Java>>正文


Java RandomAccessData.getSubsection方法代碼示例

本文整理匯總了Java中org.springframework.boot.loader.data.RandomAccessData.getSubsection方法的典型用法代碼示例。如果您正苦於以下問題:Java RandomAccessData.getSubsection方法的具體用法?Java RandomAccessData.getSubsection怎麽用?Java RandomAccessData.getSubsection使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在org.springframework.boot.loader.data.RandomAccessData的用法示例。


在下文中一共展示了RandomAccessData.getSubsection方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: getArchiveData

import org.springframework.boot.loader.data.RandomAccessData; //導入方法依賴的package包/類
private RandomAccessData getArchiveData(CentralDirectoryEndRecord endRecord,
		RandomAccessData data) {
	long offset = endRecord.getStartOfArchive(data);
	if (offset == 0) {
		return data;
	}
	return data.getSubsection(offset, data.getSize() - offset);
}
 
開發者ID:vikrammane23,項目名稱:https-github.com-g0t4-jenkins2-course-spring-boot,代碼行數:9,代碼來源:CentralDirectoryParser.java

示例2: getEntryData

import org.springframework.boot.loader.data.RandomAccessData; //導入方法依賴的package包/類
private RandomAccessData getEntryData(FileHeader entry) throws IOException {
	// aspectjrt-1.7.4.jar has a different ext bytes length in the
	// local directory to the central directory. We need to re-read
	// here to skip them
	RandomAccessData data = this.jarFile.getData();
	byte[] localHeader = Bytes.get(
			data.getSubsection(entry.getLocalHeaderOffset(), LOCAL_FILE_HEADER_SIZE));
	long nameLength = Bytes.littleEndianValue(localHeader, 26, 2);
	long extraLength = Bytes.littleEndianValue(localHeader, 28, 2);
	return data.getSubsection(entry.getLocalHeaderOffset() + LOCAL_FILE_HEADER_SIZE
			+ nameLength + extraLength, entry.getCompressedSize());
}
 
開發者ID:vikrammane23,項目名稱:https-github.com-g0t4-jenkins2-course-spring-boot,代碼行數:13,代碼來源:JarFileEntries.java

示例3: getCentralDirectory

import org.springframework.boot.loader.data.RandomAccessData; //導入方法依賴的package包/類
/**
 * Return the bytes of the "Central directory" based on the offset indicated in this
 * record.
 * @param data the source data
 * @return the central directory data
 */
public RandomAccessData getCentralDirectory(RandomAccessData data) {
	long offset = Bytes.littleEndianValue(this.block, this.offset + 16, 4);
	long length = Bytes.littleEndianValue(this.block, this.offset + 12, 4);
	return data.getSubsection(offset, length);
}
 
開發者ID:vikrammane23,項目名稱:https-github.com-g0t4-jenkins2-course-spring-boot,代碼行數:12,代碼來源:CentralDirectoryEndRecord.java


注:本文中的org.springframework.boot.loader.data.RandomAccessData.getSubsection方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。