Compartir a través de


JarInputStream Constructores

Definición

Sobrecargas

JarInputStream(Stream)

Crea un nuevo JarInputStream y lee el manifiesto opcional.

JarInputStream(IntPtr, JniHandleOwnership)

Constructor utilizado al crear representaciones administradas de objetos JNI; llamado por el tiempo de ejecución.

JarInputStream(Stream, Boolean)

Crea un nuevo JarInputStream y lee el manifiesto opcional.

JarInputStream(Stream)

Crea un nuevo JarInputStream y lee el manifiesto opcional.

[Android.Runtime.Register(".ctor", "(Ljava/io/InputStream;)V", "")]
public JarInputStream (System.IO.Stream? in);
[<Android.Runtime.Register(".ctor", "(Ljava/io/InputStream;)V", "")>]
new Java.Util.Jar.JarInputStream : System.IO.Stream -> Java.Util.Jar.JarInputStream

Parámetros

in
Stream

flujo de entrada real

Atributos

Excepciones

Si se produce un error al leer entradas del flujo de entrada.

Comentarios

Crea un nuevo JarInputStream y lee el manifiesto opcional. Si hay un manifiesto presente, también intenta comprobar las firmas si jarInputStream está firmada.

Documentación de Java para java.util.jar.JarInputStream.JarInputStream(java.io.InputStream).

Las partes de esta página son modificaciones basadas en el trabajo creado y compartido por el proyecto de código abierto de Android y se usan según los términos descritos en la licencia de atribución de Creative Commons 2.5.

Consulte también

  • <xref:Java.Util.Zip.ZipInputStream(System.IO.Stream)>

Se aplica a

JarInputStream(IntPtr, JniHandleOwnership)

Constructor utilizado al crear representaciones administradas de objetos JNI; llamado por el tiempo de ejecución.

protected JarInputStream (IntPtr javaReference, Android.Runtime.JniHandleOwnership transfer);
new Java.Util.Jar.JarInputStream : nativeint * Android.Runtime.JniHandleOwnership -> Java.Util.Jar.JarInputStream

Parámetros

javaReference
IntPtr

nativeint

que IntPtrcontiene una referencia de objeto de Java Native Interface (JNI).

transfer
JniHandleOwnership

un JniHandleOwnershipvalor de tipo que indica cómo controlar javaReference

Comentarios

Las partes de esta página son modificaciones basadas en el trabajo creado y compartido por el proyecto de código abierto de Android y se usan según los términos descritos en la licencia de atribución de Creative Commons 2.5.

Se aplica a

JarInputStream(Stream, Boolean)

Crea un nuevo JarInputStream y lee el manifiesto opcional.

[Android.Runtime.Register(".ctor", "(Ljava/io/InputStream;Z)V", "")]
public JarInputStream (System.IO.Stream? in, bool verify);
[<Android.Runtime.Register(".ctor", "(Ljava/io/InputStream;Z)V", "")>]
new Java.Util.Jar.JarInputStream : System.IO.Stream * bool -> Java.Util.Jar.JarInputStream

Parámetros

in
Stream

flujo de entrada real

verify
Boolean

indica si se va a comprobar jarInputStream si está firmado.

Atributos

Excepciones

Si se produce un error al leer entradas del flujo de entrada.

Comentarios

Crea un nuevo JarInputStream y lee el manifiesto opcional. Si hay un manifiesto presente y compruebe que es true, también intenta comprobar las firmas si jarInputStream está firmada.

Documentación de Java para java.util.jar.JarInputStream.JarInputStream(java.io.InputStream, boolean).

Las partes de esta página son modificaciones basadas en el trabajo creado y compartido por el proyecto de código abierto de Android y se usan según los términos descritos en la licencia de atribución de Creative Commons 2.5.

Consulte también

  • <xref:Java.Util.Zip.ZipInputStream(System.IO.Stream)>

Se aplica a