active questions tagged binaryfiles - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T11:24:15Z http://stackoverflow.com/feeds/tag/binaryfiles http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1865824/c-how-to-write-long-type-array-to-binary-file 0 C# how to write long type array to binary file rahul 2009-12-08T09:37:53Z 2009-12-08T10:13:43Z <p>i have a long type array. How to write this array to binary file. Problem is that if i convert it into byte array some values are changed.</p> <blockquote> <p>The array is like- long array = new long[160000];</p> </blockquote> <p>Give some code snippet.</p> http://stackoverflow.com/questions/1865313/c-writing-binary-data-to-a-binary-file 0 C# writing binary data to a binary file rahul 2009-12-08T07:41:22Z 2009-12-08T08:14:07Z <p>I have n no of <strong>variable length</strong> byte array like this. (ascii representation)</p> <blockquote> <ul> <li>1 0 obj&lt;&lt;.........>>endobj</li> <li>2 0 obj&lt;&lt;...........................>>endobj</li> <li>3 0 obj&lt;&lt;.............>>endobj</li> <li>..........</li> </ul> </blockquote> <p>I have to create a binary file by writing this array into it.But after that i also want write all offsets of objects written to a file and object count. Like--</p> <pre><code>Offset 000000023 000000199 000000300 000000514 Count 3 </code></pre> <p>offsets are from new file created by me. So my question is how can i write objects as well as offsets to file. Give me some code snippet.. <em>I tried to write objects but i don't know how find offset at the same time.</em> </p> http://stackoverflow.com/questions/1856514/writing-files-in-bit-form-to-a-file-in-c 0 Writing files in bit form to a file in C sfactor 2009-12-06T20:33:39Z 2009-12-06T20:38:45Z <p>i am implementing the huffman algorithm in C. i have got the basic functionality down upto the point where the binary codewords are obtained. so for example, abcd will be 100011000 or something similar. now the question is how do you write this code in binary form in the compressed file. i mean if i write it normally each 1 and 0 will be one character so there is no compression. </p> <p>i need to write those 1s and 0s in their bit form. is that possible in C. if so how?</p> http://stackoverflow.com/questions/1820291/jpgzip-file-combination-problem-with-zip-format 4 JPG+Zip File Combination Problem with Zip Format Tom Ritter 2009-11-30T14:55:04Z 2009-12-06T20:14:40Z <p>Hopefully you've heard of the <a href="http://linux-hacks.blogspot.com/2009/02/theory-behind-hiding-zipped-file-under.html" rel="nofollow">neat hack</a> that lets you combine a JPG and a Zip file into a single file and it's a valid (or at least readable) file for both formats. Well, I realized that since JPG lets arbitrary stuff at the end, and ZIP at the beginning, you could stick one more format in there - in the middle. For the purposes of this question, assume the middle data is arbitrary binary data guarenteed not to conflict with the JPG or ZIP formats (meaning it doesn't contain the magic zip header 0x04034b50). Illustration:</p> <pre><code>0xFFD8 &lt;- start jpg data end -&gt; 0xFFD9 ... ARBITRARY BINARY DATA ... 0x04034b50 &lt;- start zip file ... EOF </code></pre> <p>I am catting like this:</p> <blockquote> <p>cat "mss_1600.jpg" filea fileb filea fileb filea fileb filea fileb filea fileb filea fileb filea fileb filea fileb filea fileb filea fileb filea fileb filea fileb filea fileb "null.bytes" "randomzipfile.zip" > temp.zip</p> </blockquote> <p>This produces a 6,318 KB file. It <strong>does not</strong> open in 7-Zip. However, when I cat one less 'double' (so instead of 13 filea and b's, 12):</p> <blockquote> <p>cat "mss_1600.jpg" filea fileb filea fileb filea fileb filea fileb filea fileb filea fileb filea fileb filea fileb filea fileb filea fileb filea fileb filea fileb "null.bytes" "randomzipfile.zip" > temp.zip</p> </blockquote> <p>It produces a 5,996 KB file that <strong>does</strong> open in 7-Zip.</p> <p>So I know my arbitrary binary data doesn't have the magic Zip File Header to screw it up. I have reference files of the <a href="http://ritter.vg/misc/stuff/so/working" rel="nofollow">working jpg+data+zip</a> and the <a href="http://ritter.vg/misc/stuff/so/nonworking" rel="nofollow">non-working jpg+data+zip</a> (save-as cause the browser thinks they're images, and add the zip extensions yourself).</p> <p>I want to know why it fails with 13 combinations and doesn't with 12. For bonus points, I need to get around this somehow.</p> http://stackoverflow.com/questions/1848692/close-pop-up-window-after-binary-file-is-sent-to-browser 0 Close pop up window after binary file is sent to browser Angela 2009-12-04T18:11:22Z 2009-12-04T21:28:35Z <p>Hi,</p> <p>Is there a way to close a pop up window after the page writes binary data (PDF) to the browswer? </p> <p>Here are the details:</p> <p>Whenever my web appilcation needs to print, it will pass some parameters over to a pop up window, which will display the print options. When the user clicks on the Print button, it will set the src of a iframe that will call the page that does the printing. </p> <p>I have PDFConverter to convert URL / HTML to a pdf file. At the end of the converting, it will write the binary to the browser. Here are some code:</p> <pre><code>response.AddHeader("Content-Type", "binary/octet-stream"); response.AddHeader("Content-Disposition", "inline; filename=" + fileName + ".pdf; size=" + pdfBytes.Length.ToString()); response.Flush(); response.BinaryWrite(pdfBytes); response.Flush(); </code></pre> <p>After this is done, i will need to close the pop up window. However it seems like you can't do anything after the response is flushed. Any ideas?</p> <p>Thanks in advanced!</p> <p>Angela</p> http://stackoverflow.com/questions/1842779/extract-strings-from-binary-files-in-vb-net 0 Extract Strings from Binary Files in VB.Net Jeff 2009-12-03T20:41:47Z 2009-12-03T22:15:19Z <p>I want to scrape string data from some binary text files that contain embedded SQL statements. I don't need any fancy cleanup--just some way to extract the readable text. I'm using vb.net, but a call to an external utility would work too.</p> http://stackoverflow.com/questions/1833923/how-to-read-a-binary-file-and-display-the-output-as-a-float-in-c 2 How to read a binary file and display the output as a float in C? Ben 2009-12-02T16:08:30Z 2009-12-02T16:34:44Z <p>Hi,</p> <p>I'm trying to read 4-byte numbers stored in a binary file, but I don't seem to be getting the correct output. Here's my code:</p> <pre><code>#include &lt;stdio.h&gt; #include &lt;stdlib.h&gt; int main () { int res; FILE *file; float v; //Open file file = fopen("prj3.dat", "rb"); if (!file) { printf("Unable to open file input.dat\n"); } else { res = fread(&amp;v, sizeof(v), 1, file); if(res==-1) { printf("Unable to open file input.dat\n"); } else { printf("v = %f\n", v); } } return; } </code></pre> <p>My output is v = -961576900.0000000, but it should be v = 3.14159. Any ideas as to where my problem is? </p> <p>NB. input.dat is the binary file: 11010000 00001111 01001001 01000000</p> <p>Thanks</p> http://stackoverflow.com/questions/1824479/parsing-binary-file-in-c 0 parsing binary file in C# rahul 2009-12-01T07:05:30Z 2009-12-01T07:38:50Z <p>I have a binary file. i stored it in byte array. file size can be 20MB or more. then i want to parse or find particular value in the file. i am doing it by 2 ways -> 1. By converting full file in char array. 2. By converting full file in hex string.(i also have hex values)</p> <p>what is best way to parse full file..or should i do in binary form. i am using vs-2005.</p> http://stackoverflow.com/questions/1801978/how-can-i-interpret-a-legacy-binary-data-file-without-documentation 1 How can I interpret a legacy binary data file without documentation? peter.murray.rust 2009-11-26T06:58:55Z 2009-11-26T09:21:18Z <p><strong>Data</strong> is often stored in program-specific binary files for which there is little or no documentation. A typical example in our field is data that comes from an instrument, but I suspect the problem is general. What methods are there for trying to understand and interpret the data?</p> <p>To set some boundaries. The files are not encrypted and there is no DRM. The type and format of the file is specific to the writer of the program (i.e. it is not a "standard file" - such as *.tar - whose identity has been lost). There is (probably) no deliberate obfuscation but there may be some amateur efforts to save space. We can assume that we have a general knowledge of what the data is and we may recognize some, but probably not all, of the fields and arrays. </p> <p>Assume that the majority of the data is numeric, with scalars, and arrays (probably 1- and 2- dimensional and sometimes irregular or triangular). There will also be some character strings, probably names of people, sites, dates and maybe some keywords. There will be code in the program that reads the binary file, but we do not have access to the source or the assembler. As an example it may have been written by a VAX Fortran program or some early Unix or by Windows as OLE objects. The numbers may be big- or little-endian (which is not known at the start) but it's probably consistent. We may have different versions on different machines (e.g. Cray).</p> <p>We can assume we have a reasonably large corpus of files - some hundreds, say.</p> <p>We can assume two scenarios:</p> <ol> <li>We can rerun the program with different inputs so we can do experiments.</li> <li>We cannot rerun the program - we have a fixed set of documents. This has a gentle similarity to decoding historical documents in an unknown language (e.g. Linear B).</li> </ol> <p>A partial solution may be acceptable - i.e. there may be some fields that no living person now understands, but most of the others are interpretable.</p> <p>I am only interested in Open Source approaches.</p> <p><strong>UPDATE</strong> There is a related SO question (<a href="http://stackoverflow.com/questions/507093/how-to-reverse-engineer-binary-file-formats-for-compatibility-purposes">http://stackoverflow.com/questions/507093/how-to-reverse-engineer-binary-file-formats-for-compatibility-purposes</a>) but the emphasis is somewhat different. <strong>UPDATE</strong> Clever suggestion from @brianegge to address (1). Use <code>truss</code> (or possibly <code>strace</code> on Linux) to dump all write() and similar calls in the program. This should allow at least the collection of records written to disk.</p> http://stackoverflow.com/questions/1724586/can-i-hex-edit-a-file-in-visual-studio 0 Can I hex edit a file in Visual Studio? Kevin Driedger 2009-11-12T19:05:06Z 2009-11-12T19:06:10Z <p>I want to edit a binary file but I don't want to use another tool other than Visual Studio because it's a pain to switch back and forth. </p> <p>Is there perhaps a add-in or some built in functionality that can do that in Visual Studio?</p> http://stackoverflow.com/questions/179128/reading-compound-documents-in-c 2 Reading compound documents in c# cciotti 2008-10-07T15:46:00Z 2009-10-28T20:50:29Z <p>Hi - </p> <p>I'm starting a project which requires reading outlook msg files in c#. I have the specs for compound documents but am having trouble reading them in c#. Any pointers would be greatly appreciated.</p> <p>Thanks.</p> http://stackoverflow.com/questions/507093/how-to-reverse-engineer-binary-file-formats-for-compatibility-purposes 3 How to reverse engineer binary file formats for compatibility purposes Sylverdrag 2009-02-03T13:41:44Z 2009-10-23T20:31:21Z <p>I am working of a file preparation software to enable translators work easily and efficiently on a wide range of file formats. </p> <p>As far as text-based formats (xml, php, resource files,...) are concerned, my small preparation utility works fine, but a major problem for most translators is to handle all kinds of proprietary binary formats (Framemaker, Publisher, Quark...). </p> <p>These files are rarely requested and need to be opened in expensive applications (few freelance can afford to buy $20,000 worth of software just to handle a few projects per year), and even then it is not convenient to work directly in those applications anyway. </p> <p>I would like to be able to read these files and extract the text in such a way that it can be translated and then re-imported in the original application with minimal effort, or even better, to recreate a valid native binary file. </p> <p>Does that sound doable?</p> <p>Where can I find more information on handling binary file formats and are there useful tools for these kind of jobs (besides regular hex editors)?</p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/1558370/how-can-i-decompile-linux-binaries-from-windows 2 How can I decompile Linux binaries from Windows? Alon 2009-10-13T05:42:32Z 2009-10-13T05:48:19Z <p>How can I decompile Linux binaries (*.so) from Windows? Thanks.</p> http://stackoverflow.com/questions/1489857/what-is-the-byte-signature-of-a-password-protected-zip-file 0 What is the byte signature of a password-protected ZIP file? frankadelic 2009-09-28T23:30:22Z 2009-10-09T22:54:21Z <p>I've read that ZIP files start with the following bytes:</p> <pre><code>50 4B 03 04 </code></pre> <p>Reference: <a href="http://www.garykessler.net/library/file%5Fsigs.html" rel="nofollow">http://www.garykessler.net/library/file_sigs.html</a></p> <p>Question: Is there a certain sequence of bytes that indicate a ZIP file has been password-protected?</p> http://stackoverflow.com/questions/1541676/fread-terminating-mid-read-at-null-values-also-reading-in-garbage-past-expected 0 fread terminating mid-read at null values. Also reading in garbage past expected data. Chris 2009-10-09T03:41:20Z 2009-10-09T13:56:21Z <p>I am reading in pieces of a binary file using a FILE object in C++. Here is the fseek and corresponding fread call:</p> <pre><code>fseek(fp, startLocation, SEEK_SET); fread(data, m_sizeOfData, 1, fp); </code></pre> <p>m_sizeOfData ends up being an integer greater than 400 thousand. This appears that it should read all 400 thousand+ bytes from the binary file into data (which is a char[m_sizeOfData], by the way), however it stops after about 6 or 7 characters at a unicode character that simply looks like a box. I'm thinking it might represent a null termination? I'm not positive on this. This isn't the case with every piece of the file that I am reading in. Most seem to work (generally) correctly. </p> <p>Why might this be and is there a way to correctly read all of the data?</p> <p><strong>Edit</strong>:</p> <p>fp is defined as such:</p> <pre><code>FILE* fp; _wfopen_s(&amp;fp, L"C://somedata.dat", L"rb"); </code></pre> <p>This box character, in hex, is 0x06 followed by 0x00.<br /> The data is defined by: char *data = new char[m_sizeOfData];</p> <p><strong>edit 2</strong>:</p> <p>I've also noticed that another file is having some garbage loaded onto the end of it. The garbage looks like: </p> <blockquote> <p>ýýýý««««««««îþ</p> </blockquote> <p>Is this because it is trying to complete a certain round number of bytes? </p> http://stackoverflow.com/questions/1536960/restful-design-how-to-model-entitys-attachments 2 RESTful design - how to model entity's attachments LiorH 2009-10-08T10:30:56Z 2009-10-08T15:27:26Z <p>I am trying to model entity's attachments in REST. Let's say a defect entity can have multiple attachments attached to it. Every attachment has a description and some other properties (last modified, file size...) . The attachment itself is a file in any format (jpeg, doc ...)</p> <p>I was wondering how should I model it RESTfully</p> <p>I thought about the following two options:</p> <h3>First approach (using same resource, different representations):</h3> <ul> <li><p>GET , content-type:XML on <strong><a href="http://my-app/defects/" rel="nofollow">http://my-app/defects/</a>{id}/attachments</strong> will return the defect's attachments metadata in XML format (description, last modified, file size...)</p></li> <li><p>GET , content-type:gzip on <strong><a href="http://my-app/defects/" rel="nofollow">http://my-app/defects/</a>{id}/attachments</strong> will return the defect's attachments in a zip file</p></li> <li><p>GET , content-type:mime multi-part on <strong><a href="http://my-app/defects/" rel="nofollow">http://my-app/defects/</a>{id}/attachments</strong> will return the defect's attachments in a multi-part message (binary data and XML metadata altogether)</p></li> <li><p>POST, content-type:XML on <strong><a href="http://my-app/defects/" rel="nofollow">http://my-app/defects/</a>{id}/attachments</strong> will create new attachment, metadata only no file attached (then the user has to send PUT request with the binary data) </p></li> <li><p>POST , content-type:mime\multi-part on <strong><a href="http://my-app/defects/" rel="nofollow">http://my-app/defects/</a>{id}/attachments</strong> will create the attachment, the client can send both metadata and file itself in a single roundtrip</p></li> </ul> <h3>Second approach (separate the attachment's data from the metadata):</h3> <ul> <li><p>GET , content-type:XML on <strong><a href="http://my-app/defects/" rel="nofollow">http://my-app/defects/</a>{id}/attachments</strong> will return the defect's attachments metadata in XML format (description, last modified, file size...)</p></li> <li><p>GET , content-type:gzip on <strong><a href="http://my-app/defects/" rel="nofollow">http://my-app/defects/</a>{id}/attachments/files</strong> will return the defect's attachments binary data in a single zip</p></li> </ul> <p>Creating a new attachment, first call:</p> <ul> <li>POST, content-type:XML on <strong><a href="http://my-app/defects/" rel="nofollow">http://my-app/defects/</a>{id}/attachments</strong> will create new attachment, metadata only no file attached (then the user has to send PUT request with the binary data) </li> </ul> <p>Then add the binary data itself:</p> <ul> <li>POST , content-type:mime\multi-part on <strong><a href="http://my-app/defects/" rel="nofollow">http://my-app/defects/</a>{id}/attachments/{id}/file</strong> will create the attachment file</li> </ul> <p><hr /></p> <p>On one hand the first approach is more robust and efficient since the client can create\get the attachments metadata and binary data in single round trip. On the other hand, I am a bit reluctant to use the mime-multipart representation as it's more cumbersome to consume and produce.</p> <p><strong>EDIT:</strong> I checked out <a href="http://www.flickr.com/services/api/upload.example.html" rel="nofollow">flicker upload REST API</a>. It seems they are using multi part messages to include both the photo and the photo attributes.</p> http://stackoverflow.com/questions/540535/managing-large-binary-files-with-git 4 Managing large binary files with git pi 2009-02-12T08:52:52Z 2009-10-06T17:01:45Z <p>Hi there. I am looking for opinions of how to handle large binary files on which my source code (web application) is dependent. We are currently discussing several alternatives:</p> <ol> <li>Copy the binary files by hand. <ul> <li>Pro: Not sure.</li> <li>Contra: I am strongly against this, as it increases the likelihood of errors when setting up a new site/migrating the old one. Builds up another hurdle to take.</li> </ul></li> <li>Manage them all with <em>git</em>. <ul> <li>Pro: Removes the possibility to 'forget' to copy a important file</li> <li>Contra: Bloats the repository and decreases flexibility to manage the code-base and checkouts/clones/etc will take quite a while.</li> </ul></li> <li>Separate repositories. <ul> <li>Pro: Checking out/cloning the source code is fast as ever, and the images are properly archived in their own repository.</li> <li>Contra: Removes the simpleness of having <em>the one and only</em> git repository on the project. Surely introduces some other things I haven't thought about.</li> </ul></li> </ol> <p>What are your experiences/thoughts regarding this? </p> <p>Also: Does anybody have experience with multiple git repositories and managing them in one project? </p> <p><strong>Update</strong>: The files are images for a program which generates PDFs with those files in it. The files will not change very often(as in years) but are very relevant to a program. The program will not work without the files.</p> <p><strong>Update2</strong>: I found a really nice <a href="http://gitcasts.com/posts/12" rel="nofollow">screencast on using <em>git-submodule</em></a> at <a href="http://gitcasts.com/" rel="nofollow">GitCasts</a>.</p> http://stackoverflow.com/questions/1525580/is-there-a-binaryreader-in-c-to-read-data-written-from-a-binarywriter-in-c 0 Is there a BinaryReader in C++ to read data written from a BinaryWriter in C#? Chris 2009-10-06T13:26:03Z 2009-10-06T14:07:29Z <p>I've written several ints, char[]s and the such to a data file with BinaryWriter in C#. Reading the file back in (in C#) with BinaryReader, I can recreate all of the pieces of the file perfectly. </p> <p>However, attempting to read them back in with C++ yields some scary results. I was using fstream to attempt to read back the data and the data was not reading in correctly. In C++, I set up an fstream with <code>ios::in|ios::binary|ios::ate</code> and used seekg to target my location. I then read the next four bytes, which were written as the integer "16" (and reads correctly into C#). This reads as 1244780 in C++ (not the memory address, I checked). Why would this be? Is there an equivalent to BinaryReader in C++? I noticed it mentioned on msdn, but that's Visual C++ and intellisense doesn't even look like c++, to me.</p> <p>Example code for writing the file (C#):</p> <pre><code> public static void OpenFile(string filename) { fs = new FileStream(filename, FileMode.Create); w = new BinaryWriter(fs); } public static void WriteHeader() { w.Write('A'); w.Write('B'); } public static byte[] RawSerialize(object structure) { Int32 size = Marshal.SizeOf(structure); IntPtr buffer = Marshal.AllocHGlobal(size); Marshal.StructureToPtr(structure, buffer, true); byte[] data = new byte[size]; Marshal.Copy(buffer, data, 0, size); Marshal.FreeHGlobal(buffer); return data; } public static void WriteToFile(Structures.SomeData data) { byte[] buffer = Serializer.RawSerialize(data); w.Write(buffer); } </code></pre> <p>I'm not sure how I could show you the data file.</p> <p>Example of reading the data back (C#):</p> <pre><code> BinaryReader reader = new BinaryReader(new FileStream("C://chris.dat", FileMode.Open)); char[] a = new char[2]; a = reader.ReadChars(2); Int32 numberoffiles; numberoffiles = reader.ReadInt32(); Console.Write("Reading: "); Console.WriteLine(a); Console.Write("NumberOfFiles: "); Console.WriteLine(numberoffiles); </code></pre> <p>This I want to perform in c++. Initial attempt (fails at first integer):</p> <pre><code> fstream fin("C://datafile.dat", ios::in|ios::binary|ios::ate); char *memblock = 0; int size; size = 0; if (fin.is_open()) { size = static_cast&lt;int&gt;(fin.tellg()); memblock = new char[static_cast&lt;int&gt;(size+1)]; memset(memblock, 0, static_cast&lt;int&gt;(size + 1)); fin.seekg(0, ios::beg); fin.read(memblock, size); fin.close(); if(!strncmp("AB", memblock, 2)){ printf("test. This works."); } fin.seekg(2); //read the stream starting from after the second byte. int i; fin &gt;&gt; i; </code></pre> <p>Edit: It seems that no matter what location I use "seekg" to, I receive the exact same value.</p> http://stackoverflow.com/questions/1507780/searching-for-a-sequence-of-bytes-in-a-binary-file-with-java 2 Searching for a sequence of Bytes in a Binary File with Java Bassam 2009-10-02T04:55:51Z 2009-10-02T05:11:13Z <p>I have a sequence of bytes that I have to search for in a set of Binary files using Java.</p> <p>Example: I'm searching for the byte sequence <code>DEADBEEF</code> (in hex) in a Binary file. How would I go about doing this in Java? Is there a built-in method, like <code>String.contains()</code> for Binary files?</p> http://stackoverflow.com/questions/1495388/convert-class-files-to-binary-files 0 Convert .class files to binary files? Henrik 2009-09-29T23:03:40Z 2009-09-29T23:04:45Z <p>When compiling a '.java' file it will create a new '.class' file, which is not a pure binary file. To run this file you need an interpreter called 'java'. Is there a way to convert this '.class' file to a binary file? In which you don't need another program to run?</p> <p>F.ex './filename' in Linux.</p> <p>Sorry for my bad english.</p> <p>-Henrik</p> http://stackoverflow.com/questions/1450542/c-how-do-i-read-and-write-a-binary-file 6 C# - How do I read and write a binary file? Jeremy Rudd 2009-09-20T07:45:35Z 2009-09-20T08:22:04Z <p>How do I read a raw byte array from any file, and write that byte array back into a new file?</p> http://stackoverflow.com/questions/1450568/vb-how-do-i-read-and-write-a-binary-file 1 VB - How do I read and write a binary file? Jeremy Rudd 2009-09-20T08:07:26Z 2009-09-20T08:12:41Z <p>How do I read a raw byte array from any file...</p> <pre><code> Dim bytes() as Byte </code></pre> <p>..and then write that byte array back into a new file?</p> <p>I need it as a byte array to do some processing in between.</p> <p><hr /></p> <p>I'm currently using:</p> <p>To read</p> <pre><code> Dim fInfo As New FileInfo(dataPath) Dim numBytes As Long = fInfo.Length Dim fsAs New FileStream(dataPath, FileMode.Open, FileAccess.Read) Dim br As New BinaryReader(fs) Dim bytes As Byte() = br.ReadBytes(CInt(numBytes)) br.Close() fs.Close() </code></pre> <p>To write</p> <pre><code>Dim fs As System.IO.FileStream fs = New System.IO.FileStream(outpath, System.IO.FileMode.Create) fs.Write(bytes, 0, bytes.Length) fs.Close() </code></pre> http://stackoverflow.com/questions/1449125/writing-a-c-variable-length-structure-to-binary-and-reading-it-in-in-c 1 Writing a C# Variable Length Structure to Binary and Reading it in in C++? uberjumper 2009-09-19T18:06:23Z 2009-09-19T19:29:41Z <p>Okay, so i am continuing to work on my little game engine to teach me C#/C++ more. Now i am attempting to write a way of storing data in a binary format, that i created. (This is learning, i want to do this my self from scratch). What i am wondering what is the best way of dealing with variable length arrays inside a structure when reading it in C++?</p> <p>E.g. Here is what i currently have for my structures:</p> <pre><code> [StructLayout(LayoutKind.Sequential)] public struct FooBinaryHeader { public Int32 m_CheckSumLength; public byte[] m_Checksum; public Int32 m_NumberOfRecords; public FooBinaryRecordHeader[] m_BinaryRecordHeaders; public FooBinaryRecord[] m_BinaryRecords; } [StructLayout(LayoutKind.Sequential)] public struct FooBinaryRecordHeader { public Int32 m_FileNameLength; public char[] m_FileName; public Int64 m_Offset; } [StructLayout(LayoutKind.Sequential)] public struct FooBinaryRecord { public bool m_IsEncrypted; public Int64 m_DataSize; public byte[] m_Data; } </code></pre> <p>Now how would i go about in C++ to actually read this in as a structure in C++? I was kinda hoping to get around reading each of the elements one by one and copying them into a structure.</p> <p>The only real tutorial i found on this is this: <a href="http://www.gamedev.net/community/forums/topic.asp?topic%5Fid=310409&amp;whichpage=1&amp;#1989200" rel="nofollow">http://www.gamedev.net/community/forums/topic.asp?topic%5Fid=310409&amp;whichpage=1&amp;#1989200</a></p> <p>I'll take a wild guess and say reading this into a C++ structure is not really possible correct?</p> http://stackoverflow.com/questions/1386705/storing-xml-document-in-pre-parsed-binary-format 0 Storing XML document in pre-parsed binary format Jen 2009-09-06T20:56:45Z 2009-09-07T01:31:44Z <p>My application need to store large amounts of XML-like hierarchical information with the following requirements:</p> <ol> <li>Fast to read</li> <li>Minimal memory consumption</li> <li>Typed data instead of merely text</li> </ol> <p>Any suggestions for a binary format that fulfills these goals?</p> http://stackoverflow.com/questions/1353340/0x00-in-a-binary-file-vb-net 1 0x00 in a binary file vb.net Paul 2009-08-30T07:29:10Z 2009-08-30T23:10:01Z <p><strong>UPDATED BELOW</strong> I am reading a Binary file using BinaryReader in VB.Net the structure of each row in the file is "Category" = 1 byte "Code" = 1 byte "Text" = 60 Bytes</p> <pre><code> Dim Category As Byte Dim Code As Byte Dim byText() As Byte Dim chText() As Char Dim br As New BinaryReader(fs) Category = br.ReadByte() Code = br.ReadByte() byText = br.ReadBytes(60) chText = encASCII.GetChars(byText) </code></pre> <p>The problem is that the "Text" field has some funky characters used for padding. Mostly seems to be 0x00 null characters.</p> <p>(1) Is there any way to get rid of these 0x00 characters by some Encoding?</p> <p>(2) Otherwise, How can I do a replace on the chText array to get rid of the 0x00 characters. I am trying to serialize the resulting datatable to XML and it is failing on these non compliant characters. I am able to loop through the array, however I can not figure out how to do the replace?</p> <p>thanks.</p> <p><strong>UPDATE:</strong> This is where I am at with a lot of help from guys below. First solutions works, however not as flexible as I hoped, second one fails for one use case, however is much more generic. </p> <p>(1) I can solve the issue by passing the string to this subroutine</p> <pre><code>Public Function StripBad(ByVal InString As String) As String Dim str As String = InString Dim sb As New System.Text.StringBuilder strNew = strNew.Replace(chBad, " ") For Each ch As Char In str If StrComp(ChrW(Val("&amp;H25")), ch) &gt;= 0 Then ch = " " End If sb.Append(ch) Next Return sb.ToString() End Function </code></pre> <p>(2) This routine does takes out several offending characters, however fails for 0x00. This was adapted from msdn <a href="http://msdn.microsoft.com/en-us/library/kdcak6ye.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/kdcak6ye.aspx</a></p> <pre><code> Public Function StripBadwithConvert(ByVal InString As String) As String Dim unicodeString As String unicodeString = InString ' Create two different encodings. Dim ascii As Encoding = Encoding.ASCII Dim [unicode] As Encoding = Encoding.UTF8 ' Convert the string into a byte[]. Dim unicodeBytes As Byte() = [unicode].GetBytes(unicodeString) Dim asciiBytes As Byte() = Encoding.Convert([unicode], ascii, unicodeBytes) Dim asciiChars(ascii.GetCharCount(asciiBytes, 0, asciiBytes.Length) - 1) As Char ascii.GetChars(asciiBytes, 0, asciiBytes.Length, asciiChars, 0) Dim asciiString As New String(asciiChars) Return asciiString End Function </code></pre> http://stackoverflow.com/questions/1083996/how-to-mimic-built-in-net-serialization-idioms 0 How to mimic built-in .NET serialization idioms? Matt Enright 2009-07-05T12:42:46Z 2009-08-11T08:05:19Z <p>I have a library (written in C#) for which I need to read/write representations of my objects to disk (or to any Stream) in a particular binary format (to ensure compatibility with C/Java library implementations). The format requires a fair amount of bit-packing and some DEFLATE'd bytestreams. I would like my library, however, to be as idiomatic .NET as possible, however, and so would like to provide an API as close as possible to the normal binary serialization process. I'm aware of the ability to implement the IFormatter interface, but being that I really am unable to reuse any part of the built-in serialization stack, is it worth doing this, or will it just bring unnecessary overhead. In other words:</p> <p>Implement IFormatter and co.</p> <p>OR</p> <p>Just provide "Serialize"/"Deserialize" methods that act on a Stream?</p> <p><hr /></p> <p>A good point brought up below about needing the serialization semantics for any case involving Remoting. In a case where using MarshalByRef objects is feasible, I'm pretty sure that this won't be an issue, so leaving that aside are there any benefits or drawbacks to using the ISerializable/IFormatter versus a custom stack (or, is my understanding remoting incorrectly)?</p> http://stackoverflow.com/questions/1239114/how-can-i-process-a-binary-file-of-fixed-length-records-with-no-line-breaks-in-be 1 How can I process a binary file of fixed length records with no line breaks in between? celcia 2009-08-06T14:06:51Z 2009-08-07T03:28:58Z <p>Hi, I have a text file that's composed of fixed length records but all in one line with no line breaks in between. What's the best way to process it in Perl? Thanks! </p> http://stackoverflow.com/questions/1213374/randomaccessfiles-dont-close-until-application-exit 0 RandomAccessFiles don't close until application exit. psavach 2009-07-31T15:57:23Z 2009-07-31T16:27:35Z <p>I'm working on a project where I'm using RandomAccessFile. The biggest issue I am having is that even though I close the file after it being accessed the file does not close until the entire application exits. Is this standard behavior or does anyone have some idea what's going on? The code basically looks like:</p> <pre><code>RandomAccessFile raf = new RandomAccessFile(f); //do stuff raf.close(); </code></pre> <p>Both sections where I am using a RandomAccessFile are like this (i.e. I am 100% sure that I am calling close on the files.)</p> http://stackoverflow.com/questions/1182812/what-is-the-meaning-of-x00-x04-in-php 0 What is the meaning of \x00 , \x04 in PHP coderex 2009-07-25T19:15:09Z 2009-07-25T19:51:29Z <p>i have some codes having the <strong>\x00</strong> and <strong>\x04</strong> <strong><em>hex codes</em></strong>, what does it means?</p> <pre><code>$str= implode("\x00", $var['message']); //line 1 $id= $var['message'] . "\x04" . $id; //line 2 </code></pre> <p>what will happen in the <strong>line1 and line2</strong> I want to write these into a external file as <strong>binary format</strong>.</p> <p>where do i get all information like this.</p> http://stackoverflow.com/questions/1172167/parsing-a-binary-file-in-ruby 2 Parsing a binary file in Ruby Robert Rouse 2009-07-23T14:30:56Z 2009-07-24T11:15:45Z <p>I need to be able to parse a binary file with Ruby. This file contains chunks of data that are found via a header that includes the file offset and length of each chunk.</p> <p>How do I get the data out correctly? I've been unable so far to seek around in the file based on the offsets I read out since they come out in strings that I don't know how to convert to a format IO#seek understands.</p> <p>Any help? A general way to convert the offset and length into something usable (like an integer or something) would be helpful.</p>