From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.3 required=5.0 tests=BAYES_00,INVALID_MSGID autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,f46e9f8b0c4ee5c0 X-Google-Attributes: gid103376,public From: "David C. Hoos, Sr." Subject: Re: Binary Files in Text Editor Date: 1998/11/11 Message-ID: <9QKsV3UD#GA.172@samson.airnet.net>#1/1 X-Deja-AN: 412149118 References: <72aiik$c1u$1@nnrp1.dejanews.com> Newsgroups: comp.lang.ada X-Mimeole: Produced By Microsoft MimeOLE V4.72.3110.3 Date: 1998-11-11T00:00:00+00:00 List-Id: robinsoj@my-dejanews.com wrote in message <72aiik$c1u$1@nnrp1.dejanews.com>... >Is it possible to view binary files with a text editor or do you always have >to convert the binary file into a text file? Also, is there a Web site where >I can get more information on Sequential_IO and what it does? Emacs will view/edit binary files, displaying non-printable ASCII characters as octal escape sequences. It can handle files at least up to ten megabytes. > Sequential I/O simply writes or reads (according to the mode with which the file was opened), items of the type for which the instantiation was done. With Ada95, the combination of tagged types and Stream IO attributes, one can write and read heterogeneous files, rendering Sequential I/O largely a relic, in my view. David C. Hoos, Sr.