⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 zipentry.as

📁 Papervision3d的源码
💻 AS
字号:
/*nochump.util.zip.ZipEntryCopyright (C) 2007 David Chang (dchang@nochump.com)This file is part of nochump.util.zip.nochump.util.zip is free software: you can redistribute it and/or modifyit under the terms of the GNU Lesser General Public License as published bythe Free Software Foundation, either version 3 of the License, or(at your option) any later version.nochump.util.zip is distributed in the hope that it will be useful,but WITHOUT ANY WARRANTY; without even the implied warranty ofMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See theGNU Lesser General Public License for more details.You should have received a copy of the GNU Lesser General Public Licensealong with Foobar.  If not, see <http://www.gnu.org/licenses/>.*/package nochump.util.zip {		import flash.utils.ByteArray;		/**	 * This class represents a member of a zip archive.  ZipFile	 * will give you instances of this class as information	 * about the members in an archive.  On the other hand ZipOutput	 * needs an instance of this class to create a new member.	 *	 * @author David Chang	 */	public class ZipEntry {				// some members are internal as ZipFile will need to set these directly		// where their accessor does type conversion		private var _name:String;		private var _size:int = -1;		private var _compressedSize:int = -1;		private var _crc:uint;		/** @private */		internal var dostime:uint;		private var _method:int = -1; // compression method		private var _extra:ByteArray; // optional extra field data for entry		private var _comment:String; // optional comment string for entry		// The following flags are used only by ZipOutput		/** @private */		internal var flag:int; // bit flags		/** @private */		internal var version:int; // version needed to extract		/** @private */		internal var offset:int; // offset of loc header				/**		 * Creates a zip entry with the given name.		 * @param name the name. May include directory components separated		 * by '/'.		 */		public function ZipEntry(name:String) {			_name = name;		}				/**		 * Returns the entry name.  The path components in the entry are		 * always separated by slashes ('/').  		 */		public function get name():String {			return _name;		}				/**		 * Gets the time of last modification of the entry.		 * @return the time of last modification of the entry, or -1 if unknown.		 */		public function get time():Number {			var d:Date = new Date(				((dostime >> 25) & 0x7f) + 1980,				((dostime >> 21) & 0x0f) - 1,				(dostime >> 16) & 0x1f,				(dostime >> 11) & 0x1f,				(dostime >> 5) & 0x3f,				(dostime & 0x1f) << 1			);			return d.time;		}		/**		 * Sets the time of last modification of the entry.		 * @time the time of last modification of the entry.		 */		public function set time(time:Number):void {			var d:Date = new Date(time);			dostime =				(d.fullYear - 1980 & 0x7f) << 25				| (d.month + 1) << 21				| d.day << 16				| d.hours << 11				| d.minutes << 5				| d.seconds >> 1;		}				/**		 * Gets the size of the uncompressed data.		 */		public function get size():int {			return _size;		}		/**		 * Sets the size of the uncompressed data.		 */		public function set size(size:int):void {			_size = size;		}				/**		 * Gets the size of the compressed data.		 */		public function get compressedSize():int {			return _compressedSize;		}		/**		 * Sets the size of the compressed data.		 */		public function set compressedSize(csize:int):void {			_compressedSize = csize;		}				/**		 * Gets the crc of the uncompressed data.		 */		public function get crc():uint {			return _crc;		}		/**		 * Sets the crc of the uncompressed data.		 */		public function set crc(crc:uint):void {			_crc = crc;		}				/**		 * Gets the compression method. 		 */		public function get method():int {			return _method;		}		/**		 * Sets the compression method.  Only DEFLATED and STORED are		 * supported.		 */		public function set method(method:int):void {			_method = method;		}				/**		 * Gets the extra data.		 */		public function get extra():ByteArray {			return _extra;		}		/**		 * Sets the extra data.		 */		public function set extra(extra:ByteArray):void {			_extra = extra;		}				/**		 * Gets the extra data.		 */		public function get comment():String {			return _comment;		}		/**		 * Sets the entry comment.		 */		public function set comment(comment:String):void {			_comment = comment;		}				/**		 * Gets true, if the entry is a directory.  This is solely		 * determined by the name, a trailing slash '/' marks a directory.  		 */		public function isDirectory():Boolean {			return _name.charAt(_name.length - 1) == '/';		}				/**		 * Gets the string representation of this ZipEntry.  This is just		 * the name as returned by name.		 */		public function toString():String {			return _name;		}			}	}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -