Class MultipartStream
http://www.devdaily.com/java/jwarehouse/commons-fileupload-1.0/src/java/org/apache/commons/fileupload/FileUploadBase.java.shtml
Low level API for processing file uploads.
This class can be used to process data streams conforming to MIME 'multipart' format as defined in RFC 1867. Arbitrarily large amounts of data in the stream can be processed under constant memory usage.
The format of the stream is defined in the following way:
multipart-body := preamble 1*encapsulation close-delimiter epilogue
encapsulation := delimiter body CRLF
delimiter := "--" boundary CRLF
close-delimiter := "--" boudary "--"
preamble := <ignore>
epilogue := <ignore>
body := header-part CRLF body-part
header-part := 1*header CRLF
header := header-name ":" header-value
header-name := <printable ascii characters except ":">
header-value := <any ascii characters except CR & LF>
body-data := <arbitrary data>
Note that body-data can contain another mulipart entity. There is limited support for single pass processing of such nested streams. The nested stream is required to have a boundary token of the same length as the parent stream (see setBoundary(byte[])).
Here is an example of usage of this class.
try {
MultipartStream multipartStream = new MultipartStream(input, boundary);
boolean nextPart = multipartStream.skipPreamble();
OutputStream output;
while(nextPart) {
String header = multipartStream.readHeaders();
// process headers
// create some output stream
multipartStream.readBodyData(output);
nextPart = multipartStream.readBoundary();
}
} catch(MultipartStream.MalformedStreamException e) {
// the stream failed to follow required syntax
} catch(IOException e) {
// a read or write error occurred
}
Version:
$Id: MultipartStream.java 735374 2009-01-18 02:18:45Z jochen $
Author:
Rafal Krzewski, Martin Cooper, Sean C. Sullivan
--------------------------------------------------------------------------------
Nested Class Summary
static class MultipartStream.IllegalBoundaryException
Thrown upon attempt of setting an invalid boundary token.
class MultipartStream.ItemInputStream
An InputStream for reading an items contents.
static class MultipartStream.MalformedStreamException
Thrown to indicate that the input stream fails to follow the required syntax.
static class MultipartStream.ProgressNotifier
Internal class, which is used to invoke the ProgressListener.
Field Summary
protected static byte[] BOUNDARY_PREFIX
A byte sequence that precedes a boundary (CRLF--).
static byte CR
The Carriage Return ASCII character value.
static byte DASH
The dash (-) ASCII character value.
protected static int DEFAULT_BUFSIZE
The default length of the buffer used for processing a request.
protected static byte[] FIELD_SEPARATOR
A byte sequence that that follows a delimiter that will be followed by an encapsulation (CRLF).
static int HEADER_PART_SIZE_MAX
The maximum length of header-part that will be processed (10 kilobytes = 10240 bytes.).
protected static byte[] HEADER_SEPARATOR
A byte sequence that marks the end of header-part (CRLFCRLF).
static byte LF
The Line Feed ASCII character value.
protected static byte[] STREAM_TERMINATOR
A byte sequence that that follows a delimiter of the last encapsulation in the stream (--).
Constructor Summary
MultipartStream()
Deprecated. Use MultipartStream(InputStream, byte[], org.apache.commons.fileupload.MultipartStream.ProgressNotifier), or MultipartStream(InputStream, byte[], int, org.apache.commons.fileupload.MultipartStream.ProgressNotifier)
MultipartStream(InputStream input, byte[] boundary)
Deprecated. Use MultipartStream(InputStream, byte[], MultipartStream.ProgressNotifier).
MultipartStream(InputStream input, byte[] boundary, int bufSize)
Deprecated. Use MultipartStream(InputStream, byte[], int, org.apache.commons.fileupload.MultipartStream.ProgressNotifier).
Method Summary
static boolean arrayequals(byte[] a, byte[] b, int count)
Compares count first bytes in the arrays a and b.
int discardBodyData()
Reads body-data from the current encapsulation and discards it.
protected int findByte(byte value, int pos)
Searches for a byte of specified value in the buffer, starting at the specified position.
protected int findSeparator()
Searches for the boundary in the buffer region delimited by head and tail.
String getHeaderEncoding()
Retrieves the character encoding used when reading the headers of an individual part.
int readBodyData(OutputStream output)
Reads body-data from the current encapsulation and writes its contents into the output Stream.
boolean readBoundary()
Skips a boundary token, and checks whether more encapsulations are contained in the stream.
byte readByte()
Reads a byte from the buffer, and refills it as necessary.
String readHeaders()
Reads the header-part of the current encapsulation.
void setBoundary(byte[] boundary)
Changes the boundary token used for partitioning the stream.
void setHeaderEncoding(String encoding)
Specifies the character encoding to be used when reading the headers of individual parts.
boolean skipPreamble()
Finds the beginning of the first encapsulation.
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Field Detail
CR
public static final byte CRThe Carriage Return ASCII character value.
See Also:
Constant Field Values
--------------------------------------------------------------------------------
LF
public static final byte LFThe Line Feed ASCII character value.
See Also:
Constant Field Values
--------------------------------------------------------------------------------
DASH
public static final byte DASHThe dash (-) ASCII character value.
See Also:
Constant Field Values
--------------------------------------------------------------------------------
HEADER_PART_SIZE_MAX
public static final int HEADER_PART_SIZE_MAXThe maximum length of header-part that will be processed (10 kilobytes = 10240 bytes.).
See Also:
Constant Field Values
--------------------------------------------------------------------------------
DEFAULT_BUFSIZE
protected static final int DEFAULT_BUFSIZEThe default length of the buffer used for processing a request.
See Also:
Constant Field Values
--------------------------------------------------------------------------------
HEADER_SEPARATOR
protected static final byte[] HEADER_SEPARATORA byte sequence that marks the end of header-part (CRLFCRLF).
--------------------------------------------------------------------------------
FIELD_SEPARATOR
protected static final byte[] FIELD_SEPARATORA byte sequence that that follows a delimiter that will be followed by an encapsulation (CRLF).
--------------------------------------------------------------------------------
STREAM_TERMINATOR
protected static final byte[] STREAM_TERMINATORA byte sequence that that follows a delimiter of the last encapsulation in the stream (--).
--------------------------------------------------------------------------------
BOUNDARY_PREFIX
protected static final byte[] BOUNDARY_PREFIXA byte sequence that precedes a boundary (CRLF--).
Constructor Detail
MultipartStream
public MultipartStream()Deprecated. Use MultipartStream(InputStream, byte[], org.apache.commons.fileupload.MultipartStream.ProgressNotifier), or MultipartStream(InputStream, byte[], int, org.apache.commons.fileupload.MultipartStream.ProgressNotifier)
Creates a new instance.
--------------------------------------------------------------------------------
MultipartStream
public MultipartStream(InputStream input,
byte[] boundary,
int bufSize)Deprecated. Use MultipartStream(InputStream, byte[], int, org.apache.commons.fileupload.MultipartStream.ProgressNotifier).
Constructs a MultipartStream with a custom size buffer and no progress notifier.
Note that the buffer must be at least big enough to contain the boundary string, plus 4 characters for CR/LF and double dash, plus at least one byte of data. Too small a buffer size setting will degrade performance.
Parameters:
input - The InputStream to serve as a data source.
boundary - The token used for dividing the stream into encapsulations.
bufSize - The size of the buffer to be used, in bytes.
See Also:
MultipartStream(InputStream, byte[], MultipartStream.ProgressNotifier)
--------------------------------------------------------------------------------
MultipartStream
public MultipartStream(InputStream input,
byte[] boundary)Deprecated. Use MultipartStream(InputStream, byte[], MultipartStream.ProgressNotifier).
Constructs a MultipartStream with a default size buffer.
Parameters:
input - The InputStream to serve as a data source.
boundary - The token used for dividing the stream into encapsulations.
See Also:
MultipartStream(InputStream, byte[], int, MultipartStream.ProgressNotifier)
Method Detail
getHeaderEncoding
public String getHeaderEncoding()Retrieves the character encoding used when reading the headers of an individual part. When not specified, or null, the platform default encoding is used.
Returns:
The encoding used to read part headers.
--------------------------------------------------------------------------------
setHeaderEncoding
public void setHeaderEncoding(String encoding)Specifies the character encoding to be used when reading the headers of individual parts. When not specified, or null, the platform default encoding is used.
Parameters:
encoding - The encoding used to read part headers.
--------------------------------------------------------------------------------
readByte
public byte readByte()
throws IOExceptionReads a byte from the buffer, and refills it as necessary.
Returns:
The next byte from the input stream.
Throws:
IOException - if there is no more data available.
--------------------------------------------------------------------------------
readBoundary
public boolean readBoundary()
throws MultipartStream.MalformedStreamExceptionSkips a boundary token, and checks whether more encapsulations are contained in the stream.
Returns:
true if there are more encapsulations in this stream; false otherwise.
Throws:
MultipartStream.MalformedStreamException - if the stream ends unexpecetedly or fails to follow required syntax.
--------------------------------------------------------------------------------
setBoundary
public void setBoundary(byte[] boundary)
throws MultipartStream.IllegalBoundaryExceptionChanges the boundary token used for partitioning the stream.
This method allows single pass processing of nested multipart streams.
The boundary token of the nested stream is required to be of the same length as the boundary token in parent stream.
Restoring the parent stream boundary token after processing of a nested stream is left to the application.
Parameters:
boundary - The boundary to be used for parsing of the nested stream.
Throws:
MultipartStream.IllegalBoundaryException - if the boundary has a different length than the one being currently parsed.
--------------------------------------------------------------------------------
readHeaders
public String readHeaders()
throws MultipartStream.MalformedStreamExceptionReads the header-part of the current encapsulation.
Headers are returned verbatim to the input stream, including the trailing CRLF marker. Parsing is left to the application.
TODO allow limiting maximum header size to protect against abuse.
Returns:
The header-part of the current encapsulation.
Throws:
MultipartStream.MalformedStreamException - if the stream ends unexpecetedly.
--------------------------------------------------------------------------------
readBodyData
public int readBodyData(OutputStream output)
throws MultipartStream.MalformedStreamException,
IOExceptionReads body-data from the current encapsulation and writes its contents into the output Stream.
Arbitrary large amounts of data can be processed by this method using a constant size buffer. (see constructor).
Parameters:
output - The Stream to write data into. May be null, in which case this method is equivalent to discardBodyData().
Returns:
the amount of data written.
Throws:
MultipartStream.MalformedStreamException - if the stream ends unexpectedly.
IOException - if an i/o error occurs.
--------------------------------------------------------------------------------
discardBodyData
public int discardBodyData()
throws MultipartStream.MalformedStreamException,
IOExceptionReads body-data from the current encapsulation and discards it.
Use this method to skip encapsulations you don't need or don't understand.
Returns:
The amount of data discarded.
Throws:
MultipartStream.MalformedStreamException - if the stream ends unexpectedly.
IOException - if an i/o error occurs.
--------------------------------------------------------------------------------
skipPreamble
public boolean skipPreamble()
throws IOExceptionFinds the beginning of the first encapsulation.
Returns:
true if an encapsulation was found in the stream.
Throws:
IOException - if an i/o error occurs.
--------------------------------------------------------------------------------
arrayequals
public static boolean arrayequals(byte[] a,
byte[] b,
int count)Compares count first bytes in the arrays a and b.
Parameters:
a - The first array to compare.
b - The second array to compare.
count - How many bytes should be compared.
Returns:
true if count first bytes in arrays a and b are equal.
--------------------------------------------------------------------------------
findByte
protected int findByte(byte value,
int pos)Searches for a byte of specified value in the buffer, starting at the specified position.
Parameters:
value - The value to find.
pos - The starting position for searching.
Returns:
The position of byte found, counting from beginning of the buffer, or -1 if not found.
--------------------------------------------------------------------------------
findSeparator
protected int findSeparator()Searches for the boundary in the buffer region delimited by head and tail.
Returns:
The position of the boundary found, counting from the beginning of the buffer, or -1 if not found.
Low level API for processing file uploads.
This class can be used to process data streams conforming to MIME 'multipart' format as defined in RFC 1867. Arbitrarily large amounts of data in the stream can be processed under constant memory usage.
The format of the stream is defined in the following way:
multipart-body := preamble 1*encapsulation close-delimiter epilogue
encapsulation := delimiter body CRLF
delimiter := "--" boundary CRLF
close-delimiter := "--" boudary "--"
preamble := <ignore>
epilogue := <ignore>
body := header-part CRLF body-part
header-part := 1*header CRLF
header := header-name ":" header-value
header-name := <printable ascii characters except ":">
header-value := <any ascii characters except CR & LF>
body-data := <arbitrary data>
Note that body-data can contain another mulipart entity. There is limited support for single pass processing of such nested streams. The nested stream is required to have a boundary token of the same length as the parent stream (see setBoundary(byte[])).
Here is an example of usage of this class.
try {
MultipartStream multipartStream = new MultipartStream(input, boundary);
boolean nextPart = multipartStream.skipPreamble();
OutputStream output;
while(nextPart) {
String header = multipartStream.readHeaders();
// process headers
// create some output stream
multipartStream.readBodyData(output);
nextPart = multipartStream.readBoundary();
}
} catch(MultipartStream.MalformedStreamException e) {
// the stream failed to follow required syntax
} catch(IOException e) {
// a read or write error occurred
}
Version:
$Id: MultipartStream.java 735374 2009-01-18 02:18:45Z jochen $
Author:
Rafal Krzewski, Martin Cooper, Sean C. Sullivan
--------------------------------------------------------------------------------
Nested Class Summary
static class MultipartStream.IllegalBoundaryException
Thrown upon attempt of setting an invalid boundary token.
class MultipartStream.ItemInputStream
An InputStream for reading an items contents.
static class MultipartStream.MalformedStreamException
Thrown to indicate that the input stream fails to follow the required syntax.
static class MultipartStream.ProgressNotifier
Internal class, which is used to invoke the ProgressListener.
Field Summary
protected static byte[] BOUNDARY_PREFIX
A byte sequence that precedes a boundary (CRLF--).
static byte CR
The Carriage Return ASCII character value.
static byte DASH
The dash (-) ASCII character value.
protected static int DEFAULT_BUFSIZE
The default length of the buffer used for processing a request.
protected static byte[] FIELD_SEPARATOR
A byte sequence that that follows a delimiter that will be followed by an encapsulation (CRLF).
static int HEADER_PART_SIZE_MAX
The maximum length of header-part that will be processed (10 kilobytes = 10240 bytes.).
protected static byte[] HEADER_SEPARATOR
A byte sequence that marks the end of header-part (CRLFCRLF).
static byte LF
The Line Feed ASCII character value.
protected static byte[] STREAM_TERMINATOR
A byte sequence that that follows a delimiter of the last encapsulation in the stream (--).
Constructor Summary
MultipartStream()
Deprecated. Use MultipartStream(InputStream, byte[], org.apache.commons.fileupload.MultipartStream.ProgressNotifier), or MultipartStream(InputStream, byte[], int, org.apache.commons.fileupload.MultipartStream.ProgressNotifier)
MultipartStream(InputStream input, byte[] boundary)
Deprecated. Use MultipartStream(InputStream, byte[], MultipartStream.ProgressNotifier).
MultipartStream(InputStream input, byte[] boundary, int bufSize)
Deprecated. Use MultipartStream(InputStream, byte[], int, org.apache.commons.fileupload.MultipartStream.ProgressNotifier).
Method Summary
static boolean arrayequals(byte[] a, byte[] b, int count)
Compares count first bytes in the arrays a and b.
int discardBodyData()
Reads body-data from the current encapsulation and discards it.
protected int findByte(byte value, int pos)
Searches for a byte of specified value in the buffer, starting at the specified position.
protected int findSeparator()
Searches for the boundary in the buffer region delimited by head and tail.
String getHeaderEncoding()
Retrieves the character encoding used when reading the headers of an individual part.
int readBodyData(OutputStream output)
Reads body-data from the current encapsulation and writes its contents into the output Stream.
boolean readBoundary()
Skips a boundary token, and checks whether more encapsulations are contained in the stream.
byte readByte()
Reads a byte from the buffer, and refills it as necessary.
String readHeaders()
Reads the header-part of the current encapsulation.
void setBoundary(byte[] boundary)
Changes the boundary token used for partitioning the stream.
void setHeaderEncoding(String encoding)
Specifies the character encoding to be used when reading the headers of individual parts.
boolean skipPreamble()
Finds the beginning of the first encapsulation.
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Field Detail
CR
public static final byte CRThe Carriage Return ASCII character value.
See Also:
Constant Field Values
--------------------------------------------------------------------------------
LF
public static final byte LFThe Line Feed ASCII character value.
See Also:
Constant Field Values
--------------------------------------------------------------------------------
DASH
public static final byte DASHThe dash (-) ASCII character value.
See Also:
Constant Field Values
--------------------------------------------------------------------------------
HEADER_PART_SIZE_MAX
public static final int HEADER_PART_SIZE_MAXThe maximum length of header-part that will be processed (10 kilobytes = 10240 bytes.).
See Also:
Constant Field Values
--------------------------------------------------------------------------------
DEFAULT_BUFSIZE
protected static final int DEFAULT_BUFSIZEThe default length of the buffer used for processing a request.
See Also:
Constant Field Values
--------------------------------------------------------------------------------
HEADER_SEPARATOR
protected static final byte[] HEADER_SEPARATORA byte sequence that marks the end of header-part (CRLFCRLF).
--------------------------------------------------------------------------------
FIELD_SEPARATOR
protected static final byte[] FIELD_SEPARATORA byte sequence that that follows a delimiter that will be followed by an encapsulation (CRLF).
--------------------------------------------------------------------------------
STREAM_TERMINATOR
protected static final byte[] STREAM_TERMINATORA byte sequence that that follows a delimiter of the last encapsulation in the stream (--).
--------------------------------------------------------------------------------
BOUNDARY_PREFIX
protected static final byte[] BOUNDARY_PREFIXA byte sequence that precedes a boundary (CRLF--).
Constructor Detail
MultipartStream
public MultipartStream()Deprecated. Use MultipartStream(InputStream, byte[], org.apache.commons.fileupload.MultipartStream.ProgressNotifier), or MultipartStream(InputStream, byte[], int, org.apache.commons.fileupload.MultipartStream.ProgressNotifier)
Creates a new instance.
--------------------------------------------------------------------------------
MultipartStream
public MultipartStream(InputStream input,
byte[] boundary,
int bufSize)Deprecated. Use MultipartStream(InputStream, byte[], int, org.apache.commons.fileupload.MultipartStream.ProgressNotifier).
Constructs a MultipartStream with a custom size buffer and no progress notifier.
Note that the buffer must be at least big enough to contain the boundary string, plus 4 characters for CR/LF and double dash, plus at least one byte of data. Too small a buffer size setting will degrade performance.
Parameters:
input - The InputStream to serve as a data source.
boundary - The token used for dividing the stream into encapsulations.
bufSize - The size of the buffer to be used, in bytes.
See Also:
MultipartStream(InputStream, byte[], MultipartStream.ProgressNotifier)
--------------------------------------------------------------------------------
MultipartStream
public MultipartStream(InputStream input,
byte[] boundary)Deprecated. Use MultipartStream(InputStream, byte[], MultipartStream.ProgressNotifier).
Constructs a MultipartStream with a default size buffer.
Parameters:
input - The InputStream to serve as a data source.
boundary - The token used for dividing the stream into encapsulations.
See Also:
MultipartStream(InputStream, byte[], int, MultipartStream.ProgressNotifier)
Method Detail
getHeaderEncoding
public String getHeaderEncoding()Retrieves the character encoding used when reading the headers of an individual part. When not specified, or null, the platform default encoding is used.
Returns:
The encoding used to read part headers.
--------------------------------------------------------------------------------
setHeaderEncoding
public void setHeaderEncoding(String encoding)Specifies the character encoding to be used when reading the headers of individual parts. When not specified, or null, the platform default encoding is used.
Parameters:
encoding - The encoding used to read part headers.
--------------------------------------------------------------------------------
readByte
public byte readByte()
throws IOExceptionReads a byte from the buffer, and refills it as necessary.
Returns:
The next byte from the input stream.
Throws:
IOException - if there is no more data available.
--------------------------------------------------------------------------------
readBoundary
public boolean readBoundary()
throws MultipartStream.MalformedStreamExceptionSkips a boundary token, and checks whether more encapsulations are contained in the stream.
Returns:
true if there are more encapsulations in this stream; false otherwise.
Throws:
MultipartStream.MalformedStreamException - if the stream ends unexpecetedly or fails to follow required syntax.
--------------------------------------------------------------------------------
setBoundary
public void setBoundary(byte[] boundary)
throws MultipartStream.IllegalBoundaryExceptionChanges the boundary token used for partitioning the stream.
This method allows single pass processing of nested multipart streams.
The boundary token of the nested stream is required to be of the same length as the boundary token in parent stream.
Restoring the parent stream boundary token after processing of a nested stream is left to the application.
Parameters:
boundary - The boundary to be used for parsing of the nested stream.
Throws:
MultipartStream.IllegalBoundaryException - if the boundary has a different length than the one being currently parsed.
--------------------------------------------------------------------------------
readHeaders
public String readHeaders()
throws MultipartStream.MalformedStreamExceptionReads the header-part of the current encapsulation.
Headers are returned verbatim to the input stream, including the trailing CRLF marker. Parsing is left to the application.
TODO allow limiting maximum header size to protect against abuse.
Returns:
The header-part of the current encapsulation.
Throws:
MultipartStream.MalformedStreamException - if the stream ends unexpecetedly.
--------------------------------------------------------------------------------
readBodyData
public int readBodyData(OutputStream output)
throws MultipartStream.MalformedStreamException,
IOExceptionReads body-data from the current encapsulation and writes its contents into the output Stream.
Arbitrary large amounts of data can be processed by this method using a constant size buffer. (see constructor).
Parameters:
output - The Stream to write data into. May be null, in which case this method is equivalent to discardBodyData().
Returns:
the amount of data written.
Throws:
MultipartStream.MalformedStreamException - if the stream ends unexpectedly.
IOException - if an i/o error occurs.
--------------------------------------------------------------------------------
discardBodyData
public int discardBodyData()
throws MultipartStream.MalformedStreamException,
IOExceptionReads body-data from the current encapsulation and discards it.
Use this method to skip encapsulations you don't need or don't understand.
Returns:
The amount of data discarded.
Throws:
MultipartStream.MalformedStreamException - if the stream ends unexpectedly.
IOException - if an i/o error occurs.
--------------------------------------------------------------------------------
skipPreamble
public boolean skipPreamble()
throws IOExceptionFinds the beginning of the first encapsulation.
Returns:
true if an encapsulation was found in the stream.
Throws:
IOException - if an i/o error occurs.
--------------------------------------------------------------------------------
arrayequals
public static boolean arrayequals(byte[] a,
byte[] b,
int count)Compares count first bytes in the arrays a and b.
Parameters:
a - The first array to compare.
b - The second array to compare.
count - How many bytes should be compared.
Returns:
true if count first bytes in arrays a and b are equal.
--------------------------------------------------------------------------------
findByte
protected int findByte(byte value,
int pos)Searches for a byte of specified value in the buffer, starting at the specified position.
Parameters:
value - The value to find.
pos - The starting position for searching.
Returns:
The position of byte found, counting from beginning of the buffer, or -1 if not found.
--------------------------------------------------------------------------------
findSeparator
protected int findSeparator()Searches for the boundary in the buffer region delimited by head and tail.
Returns:
The position of the boundary found, counting from the beginning of the buffer, or -1 if not found.
相关推荐
Java ClassFinal是一款针对Java类文件的安全加密工具,主要用于保护开发者编写的Java代码不被轻易反编译和篡改,从而增强软件的安全性。在Java应用开发中,源代码的保护至关重要,因为Java的字节码(class文件)是可...
ClassFinal正是为解决这些问题而设计的一款Java类文件安全加密工具。这款工具能够对编译后的`.class`文件进行加密处理,使得未经授权的用户无法轻易读取或反编译代码,从而提高代码的安全性。 ClassFinal的特点在于...
### Class.forName 的用法详解 #### 一、概述 `Class.forName` 是 Java 反射 API 中的一个重要方法,主要用于动态加载类。该方法的主要作用是根据提供的全限定类名来加载并返回对应的 `Class` 对象。在 Java 开发...
Java 反编译是指将编译后的.class 文件转换回原始的.java 源代码的过程。在实际开发中,我们可能需要反编译.class 文件以便于修改或 debugging。下面将详细介绍.class 文件反编译到.java 文件的过程,包括反编译...
USB 设备类型 device class 代码完整版 USB 设备类型 device class 代码是一种用于标识设备功能和加载设备驱动程序的代码信息。该信息被包含在三个字节中,分别是 Base Class、SubClass 和 Protocol。这些信息可以...
打印机驱动 佳能Canon imageCLASS MF211 驱动打印机驱动 佳能Canon imageCLASS MF211 驱动打印机驱动 佳能Canon imageCLASS MF211 驱动打印机驱动 佳能Canon imageCLASS MF211 驱动打印机驱动 佳能Canon imageCLASS ...
"Java中通过Class类获取Class对象的方法详解" Java中获取Class对象是Java基础知识中的一个重要部分,通过Class类可以获取Class对象,Class对象是Java虚拟机在加载类时自动构造的。下面将详细介绍通过Class类获取...
破解ClassIn强制全屏需要通过C++编写一个破解器,首先需要了解ClassIn强制全屏的原理。一般来说,ClassIn通过调用系统API或者操作系统的特定功能来实现全屏显示,我们需要通过Hook技术截获这些调用,然后修改其行为...
Java泛型的用法及T.class的获取过程解析 Java泛型是Java编程语言中的一种重要特性,它允许开发者在编写代码时指定类型参数,从而提高代码的灵活性和可读性。本文将详细介绍Java泛型的用法 及T.class的获取过程解析...
Java元数据——Class类 Java中的元数据Class类是一个基础的概念,它代理了这个类的类型信息、方法签名、属性等信息。每个类都有一个Class对象,它用来创建这个类的所有对象。每个对象的创建都依赖于Class对象的创建...
赠送jar包:classgraph-4.8.83.jar; 赠送原API文档:classgraph-4.8.83-javadoc.jar; 赠送源代码:classgraph-4.8.83-sources.jar; 赠送Maven依赖信息文件:classgraph-4.8.83.pom; 包含翻译后的API文档:class...
<div class=chose-ck v-for=(item,index2) key=index2 ref=chosebox> <p>{{item.name}} <dt v-for=(item2,index) in item.childsCurGoods :key=item2.id :class=index==iac[index2]?'check':'' :id=item2.id :...
标题中的“CLASS直接修改工具”指的是用于操作Java字节码(.class文件)的软件工具。这类工具允许开发者查看、分析甚至修改Java类文件的内部结构,通常在进行逆向工程、调试、优化或者安全研究时使用。Java字节码是...
Java的Class反编译工具是开发者在理解和学习Java字节码或者进行逆向工程时的重要辅助工具。在Java编程环境中,源代码会被编译成字节码(.class文件),这些字节码是机器不可读的,但是可以由Java虚拟机(JVM)执行。...
《class-dump-z:全平台神器,探索iOS与跨平台逆向工程的得力助手》 在IT行业中,尤其是在移动应用开发和安全分析领域,逆向工程是一项至关重要的技能。它可以帮助开发者理解软件的工作原理,查找漏洞,或者优化...
ClassFinal是一款java_class文件安全加密工具,支持直接加密jar包或war包,无需_classfinal
在Java编程语言中,`.class`文件是Java字节码的载体,它是Java源代码(`.java`文件)经过编译后的结果。这些字节码文件可以在任何支持Java的平台上运行,无需关心底层硬件架构。然而,由于`.class`文件是二进制格式...
打印机驱动 佳能Canon imageCLASS MF4452 一体机驱动打印机驱动 佳能Canon imageCLASS MF4452 一体机驱动打印机驱动 佳能Canon imageCLASS MF4452 一体机驱动打印机驱动 佳能Canon imageCLASS MF4452 一体机驱动...
众所周知,java编译后的class文件是一种中间字节码文件, 很容易被反编译工具反编译,而传统的java源代码保护方法基本都是采用混淆的方式, 但这样会带来很多麻烦,而且也不能真正保护class文件, 很多工具是对class...
### Java反编译工具:将.class文件转换为.java文件 #### 概述 在软件开发领域,有时我们可能需要分析第三方库或者开源项目的内部结构,这时就需要借助于反编译工具来帮助我们阅读和理解其源码。Java作为一种广泛...