473,655 Members | 3,105 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Ok, I solved the zip error, but I can't unzip

Hi! Finally I figure out what was wrong... "objZipEntry.si ze = strmFile" I wasn't giving the right file length... But now, I have issue with the unzip function... I can't unzip it, the unzip function return true but its invalid parameter when I try to set the image to the picture box....

Private Overloads Function Unzip(ByVal strSource As String, ByVal
strFileToExtrac t As String, ByRef newms As MemoryStream) As Boolean

If File.Exists(str Source) Then

Dim ZipStream As ZipInputStream

Try

ZipStream = New ZipInputStream( File.OpenRead(s trSource))

ZipStream.Passw ord = "your own prefered password here"

Dim TheEntry As ZipEntry = ZipStream.GetNe xtEntry()

Dim size As Integer

Do Until TheEntry Is Nothing

If Path.GetFileNam e(TheEntry.Name ) = strFileToExtrac t Then

Dim data(1024) As Byte

newms = New MemoryStream

Dim bw As New BinaryWriter(ne wms)

Dim buffer(1024) As Byte

Dim length As Integer

Dim dataToRead As Long = TheEntry.Size

While dataToRead > 0

length = ZipStream.Read( buffer, 0, 1024)

bw.Write(buffer , 0, length)

ReDim buffer(1024) ' Clear the buffer

dataToRead = dataToRead - length

End While

Return True

End If

TheEntry = ZipStream.GetNe xtEntry()

Loop

Catch e As Exception

Finally

ZipStream.Close ()

End Try

End If

End Function

Nov 21 '05 #1
1 1841

Hello Jean

i have just send you a working example , inclusive the way to bind the
unzipped stream to a picturebox

i hope it helps :-)
regards

Michel Posseth

"Jean Christophe Avard" <NO***@M.BITC H> wrote in message
news:Oe******** ******@tk2msftn gp13.phx.gbl...
Hi! Finally I figure out what was wrong... "objZipEntry.si ze = strmFile" I
wasn't giving the right file length... But now, I have issue with the unzip
function... I can't unzip it, the unzip function return true but its invalid
parameter when I try to set the image to the picture box....

Private Overloads Function Unzip(ByVal strSource As String, ByVal
strFileToExtrac t As String, ByRef newms As MemoryStream) As Boolean

If File.Exists(str Source) Then

Dim ZipStream As ZipInputStream

Try

ZipStream = New ZipInputStream( File.OpenRead(s trSource))

ZipStream.Passw ord = "your own prefered password here"

Dim TheEntry As ZipEntry = ZipStream.GetNe xtEntry()

Dim size As Integer

Do Until TheEntry Is Nothing

If Path.GetFileNam e(TheEntry.Name ) = strFileToExtrac t Then

Dim data(1024) As Byte

newms = New MemoryStream

Dim bw As New BinaryWriter(ne wms)

Dim buffer(1024) As Byte

Dim length As Integer

Dim dataToRead As Long = TheEntry.Size

While dataToRead > 0

length = ZipStream.Read( buffer, 0, 1024)

bw.Write(buffer , 0, length)

ReDim buffer(1024) ' Clear the buffer

dataToRead = dataToRead - length

End While

Return True

End If

TheEntry = ZipStream.GetNe xtEntry()

Loop

Catch e As Exception

Finally

ZipStream.Close ()

End Try

End If

End Function
Nov 21 '05 #2

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

7
1773
by: italo | last post by:
Greetings. There is a way to zip and unzip files. its like a Winzip or WinRar or PowerArchiver.. but i need to .NET ZIP and unZIP these files. ex. <name_of_file>.zip i dont know if theses words can explain what i want to know. :p Kind Regards.
3
33894
by: Jan | last post by:
Hi, Is there a way to unzip a file from C# since I need to download a zip file from the server, unzip it and verify its contents, all through the same program. Thanks in advance, Jan
4
6011
by: DataSmash | last post by:
I need to unzip all zip file(s) in the current directory into their own subdirectories. The zip file name(s) always start with the string "usa" and end with ".zip". The code below will make the subdirectory, move the zip file into the subdirectory, but unzips the contents into the root (current) directory. I want the contents of the zip file unloaded into the newly created subdirectory where the zip file is. Any ideas? Thanks.
11
7583
by: Hari Sekhon | last post by:
I do import zipfile zip=zipfile.ZipFile('d:\somepath\cdimage.zip') zip.namelist() then either of the two: A) file('someimage.iso','w').write(zip.read('someimage.iso'))
4
7432
by: spdude | last post by:
Hi, We are using Dynazip to unzip files on our server. It works perfectly on a test box but when the same code is deployed to the production, it chokes. It creates the unzipped file with 0 bytes. It makes me think that is some kinda environment/system issue but am not sure what it is. I have checked the permissions on the folder/file and it seems to be good. Any help is really appreciated.
3
4147
by: DaveO | last post by:
My apologies for individually posting this to multiple newsgroups - my ISP won't allow multiple posts. I'm not a C programmer, so I'm looking for someone to modify some UnZip code for a Self-Extracting stub. I have a copy of the source code of the UnZipSFX utility, also available from : http://sourceforge.net/project/showfiles.php?group_id=118012
7
18149
dima69
by: dima69 | last post by:
I'm looking for the solution to Zip / Unzip files in VB6 / VBA. I've searched the web and found several solutions (zlib.dll, Info-Zip, DynaZip, PKZip, ...). The question is which one is the best ? My considerations are: 1. The solution must be simple, general and robust (be able to unzip all standard zip files, run on all Win platforms). 2. The solution must be based on standard DLL (not OCX, not command-prompt EXE) 3. No extra features...
1
3051
by: sudhivns | last post by:
Looking for Zip/Unzip handling code. Unzip feature should extract the files including the absolute path. Eg: Input data.zip contains 1. folder IMP 2. some *.txt files. On Unzip, i choose the location where i want to extract say F:\Data, now extracted files should appear in F:\Data including the absolute path.
6
5771
by: rajarora | last post by:
Hi , I faced a very strange problem when I unzip a zip file on my solaris workstation. Actually I wanted to transfer a folder, say it TEST which contains some sub-folders inside it from windows to solaris machine. So I zipped this folder to TEST.ZIP on my windows machine. Then from my windows machine, I started ftp from command prompt and connected to my solaris machine and I copied this TEST.ZIP folder using put command to my solaris...
0
8296
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8816
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
8497
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8598
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7310
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6162
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
4150
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
2721
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
1598
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.