• Lowell (11/26/2012)


    those two dll's, java.util.zip.dll? and java.io.dll? need to be in the same folder as the script you are calling.

    they probably are not,and i'm not sure how to insert them into the global assembly cache so you don't need them locally.

    Thanks for your reply. I was wondering if you knew how to replace java.io with System.IO and and java.util.zip with ??? (another System function) and then inherit their functionality below in the code ?

    in other words:

    how can I replace 'Imports java.io' with System.IO and 'Imports java.util.zip' with some other applicable System.??? and then inherit their functionality by replacing the codes below with appropriate System.??? versions :

    Dim oFileInputStream As New java.io.FileInputStream(strSourceFile)

    Dim oZipInputStream As New java.util.zip.ZipInputStream(oFileInputStream)

    Dim oZipEntry As ZipEntry = oZipInputStream.getNextEntry()

    Dim oFileOutputStream As New java.io.FileOutputStream(strDestinationDirectory.Replace("\", "/") & oZipEntry.getName())

    I do not use and write VB scripts so I am not sure if I am able to explain my situation clearly.

    Thanks,

    Paul