Simplest, efficient ways to read binary and ascii files to string or similar in various languages. - Stack Overflow most recent 30 from stackoverflow.com2009-12-23T10:03:48Zhttp://stackoverflow.com/feeds/question/181634http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/181634/simplest-efficient-ways-to-read-binary-and-ascii-files-to-string-or-similar-in-v7Simplest, efficient ways to read binary and ascii files to string or similar in various languages.Brian2008-10-08T07:15:56Z2009-11-18T17:14:25Z
<p>Personally, I always forget this stuff. So I figured this is a useful thing to have as a reference.</p>
<ol>
<li>Read an ascii file into a string</li>
<li>Write an ascii file from a string</li>
<li>Read a binary file into something appropriate. If possible, store in a string, too.</li>
<li>Write a binary file from something appropriate. If possible, write from a string, too.</li>
</ol>
<p>Current Answers (sorted alphabetically):</p>
<ul>
<li>Ada</li>
<li>Bash</li>
<li>C</li>
<li>C++</li>
<li>C#/.Net</li>
<li>Delphi</li>
<li>Groovy</li>
<li>Java </li>
<li>Lua</li>
<li>PHP</li>
<li>Perl</li>
<li>Python</li>
<li>R6RS Scheme</li>
<li>Rebol</li>
<li>Ruby</li>
<li>VB</li>
</ul>
<p>Missing Answers:</p>
<ul>
<li>Common Lisp</li>
</ul>
http://stackoverflow.com/questions/181634/simplest-efficient-ways-to-read-binary-and-ascii-files-to-string-or-similar-in-v/181637#1816372Answer by Brian for Simplest, efficient ways to read binary and ascii files to string or similar in various languages.Brian2008-10-08T07:18:12Z2008-10-08T07:18:12Z<p>I'll start. For Python:</p>
<pre><code>#1/3.
filehandle = open('filename', 'r')
filetext = filehandle.read()
filehandle.close()
#2/4
filehandle = open('filename', 'w') #use 'a' to append
filehandle.write('string')
filehandle.close()
</code></pre>
http://stackoverflow.com/questions/181634/simplest-efficient-ways-to-read-binary-and-ascii-files-to-string-or-similar-in-v/181642#181642-2Answer by Fire Lancer for Simplest, efficient ways to read binary and ascii files to string or similar in various languages.Fire Lancer2008-10-08T07:19:48Z2008-10-08T07:19:48Z<p>Why would you blindly want to place an entire file in a string? Exspecialy binary files which have almost no use in that context?</p>
<p>Your better off reading/writing the files into an appropiate datastructure. eg for an ini file into a (for c++) "std::map >" which then stores all the sections, with there keys and vaules for easy access (eg "IniMap['mysection']['mykey'] = 'some string';")</p>
<p>Simerler things can be done for other files (althouh much more complex structure than a simple set of maps).</p>
http://stackoverflow.com/questions/181634/simplest-efficient-ways-to-read-binary-and-ascii-files-to-string-or-similar-in-v/181658#1816582Answer by Jonathan Lonowski for Simplest, efficient ways to read binary and ascii files to string or similar in various languages.Jonathan Lonowski2008-10-08T07:24:18Z2008-10-08T07:45:48Z<p>Ruby:</p>
<pre><code>#1, 3
IO.readlines("file.ext").to_s;
#2, 4
File.open("file.ext", "w") do |out|
out << 'string'
end
</code></pre>
http://stackoverflow.com/questions/181634/simplest-efficient-ways-to-read-binary-and-ascii-files-to-string-or-similar-in-v/181709#1817093Answer by leppie for Simplest, efficient ways to read binary and ascii files to string or similar in various languages.leppie2008-10-08T07:43:12Z2008-10-08T10:47:32Z<p>R6RS Scheme:</p>
<pre><code>(call-with-input-file "filename" get-string-all)
(call-with-output-file "filename"
(lambda (p) (put-string p "text")))
(call-with-port (open-input-file "filename") get-bytevector-all)
(call-with-port
(open-output-file "filename")
(lambda (p) (put-bytevector p bytes)))
</code></pre>
http://stackoverflow.com/questions/181634/simplest-efficient-ways-to-read-binary-and-ascii-files-to-string-or-similar-in-v/181766#1817665Answer by Loris for Simplest, efficient ways to read binary and ascii files to string or similar in various languages.Loris2008-10-08T08:03:47Z2008-10-08T08:03:47Z<p>c#:</p>
<pre><code>1:
string s = System.IO.File.ReadAllText(fileName);
2:
System.IO.File.WriteAllText(fileName, s);
3:
byte[] data = System.IO.File.ReadAllBytes(fileName);
4:
System.IO.File.WriteAllBytes(fileName, data);
</code></pre>
http://stackoverflow.com/questions/181634/simplest-efficient-ways-to-read-binary-and-ascii-files-to-string-or-similar-in-v/181776#1817760Answer by korona for Simplest, efficient ways to read binary and ascii files to string or similar in various languages.korona2008-10-08T08:05:54Z2008-10-08T08:05:54Z<p>C:</p>
<p>1:</p>
<pre><code>FILE *f = fopen ("filename", "rt");
struct _stat s;
_fstat (f->_file, &s);
char *str = (char *)malloc (s.st_size + 1);
fread (str, 1, s.st_size, f);
str[s.st_size - 1] = 0;
fclose (f);
</code></pre>
<p>2:</p>
<pre><code>char *str = "something";
FILE *f = fopen ("filename", "wt");
fwrite (str, 1, strlen (str), f);
fclose (f);
</code></pre>
<p>3:</p>
<pre><code>FILE *f = fopen ("filename", "rb");
struct _stat s;
_fstat (f->_file, &s);
unsigned char *data = (unsigned char *)malloc (s.st_size);
fread (data, 1, s.st_size, f);
fclose (f);
</code></pre>
<p>4:</p>
<pre><code>unsigned char *data = pointer_to_data;
int dataSize = 1337;
FILE *f = fopen ("filename", "wb");
fwrite (data, 1, dataSize, f);
fclose (f);
</code></pre>
http://stackoverflow.com/questions/181634/simplest-efficient-ways-to-read-binary-and-ascii-files-to-string-or-similar-in-v/181795#181795-1Answer by Unkwntech for Simplest, efficient ways to read binary and ascii files to string or similar in various languages.Unkwntech2008-10-08T08:15:46Z2008-10-08T08:15:46Z<p>PHP:<br />
1&3</p>
<pre><code><?php
$file = implode('', file('filename')); //I imploded the file because file() returns an array with the file split at \n
?>
</code></pre>
<p>2&4 (a bit more work, but not much)</p>
<pre><code><?php
$handle = fopen('filename', 'w+b'); //b can be removed if not in windows
fwrite($handle, $data);
fclose($handle);
?>
</code></pre>
http://stackoverflow.com/questions/181634/simplest-efficient-ways-to-read-binary-and-ascii-files-to-string-or-similar-in-v/181871#1818711Answer by Jonathan Lonowski for Simplest, efficient ways to read binary and ascii files to string or similar in various languages.Jonathan Lonowski2008-10-08T08:50:03Z2008-10-08T08:54:10Z<p>Perl:</p>
<pre><code># 1, 3
open(R, "<", "file.ext");
#binmode R; # uncomment as needed
$contents = join('', <R>);
close(R);
# 2, 4
open(W, ">", "file.ext");
#binmode W; # uncomment as needed
print W "string";
close(W);
</code></pre>
<p>Further reading: <a href="http://perldoc.perl.org/functions/binmode.html" rel="nofollow">binmode</a></p>
http://stackoverflow.com/questions/181634/simplest-efficient-ways-to-read-binary-and-ascii-files-to-string-or-similar-in-v/181887#1818870Answer by Bruno De Fraine for Simplest, efficient ways to read binary and ascii files to string or similar in various languages.Bruno De Fraine2008-10-08T09:00:43Z2008-10-09T07:38:04Z<p>Bash.</p>
<p>1:</p>
<pre><code>VAR=$(< file)
</code></pre>
<p>Or:</p>
<pre><code>read -d $'\0' VAR < file
</code></pre>
<p>2:</p>
<pre><code>echo "$VAR" > file
</code></pre>
http://stackoverflow.com/questions/181634/simplest-efficient-ways-to-read-binary-and-ascii-files-to-string-or-similar-in-v/182202#1822020Answer by Ralph Rickenbach for Simplest, efficient ways to read binary and ascii files to string or similar in various languages.Ralph Rickenbach2008-10-08T11:14:04Z2008-10-08T11:14:04Z<p>Delphi</p>
<p>1/3: </p>
<pre><code>memo.lines.loadfromfile('filename');
s := memo.lines.text;
</code></pre>
<p>2/4: </p>
<pre><code>memo.lines.text := s;
memo.lines.savetofile('filename');
</code></pre>
<p>This assumes that there is a tmemo component on the screen. Alternatively one could just create a TStringList and call loadfromfile or savetofile as the lines property is just that, a Tstringlist.</p>
<p>TStringlist has a property text that is of type string.</p>
http://stackoverflow.com/questions/181634/simplest-efficient-ways-to-read-binary-and-ascii-files-to-string-or-similar-in-v/185338#1853384Answer by Alexander Kojevnikov for Simplest, efficient ways to read binary and ascii files to string or similar in various languages.Alexander Kojevnikov2008-10-08T23:24:19Z2009-03-19T20:55:48Z<p><strong>Python 2.6+ or 2.5 with <code>from __future__ import with_statement</code></strong></p>
<p><strong>1/3:</strong></p>
<pre><code>with open('filename') as f:
s = f.read()
</code></pre>
<p><strong>2/4:</strong></p>
<pre><code>with open('filename', 'w') as f:
f.write('data')
</code></pre>
http://stackoverflow.com/questions/181634/simplest-efficient-ways-to-read-binary-and-ascii-files-to-string-or-similar-in-v/185579#1855790Answer by Randy Hudson for Simplest, efficient ways to read binary and ascii files to string or similar in various languages.Randy Hudson2008-10-09T01:18:03Z2008-10-09T01:18:03Z<p>Groovy:</p>
<ol>
<li><p>result = new File(filename).text</p></li>
<li><p>new File(filename).text = source</p></li>
<li><p>result = new File(filename).readBytes()</p></li>
<li><p>new File(filename).withOutputStream{ it<<source }</p></li>
</ol>
http://stackoverflow.com/questions/181634/simplest-efficient-ways-to-read-binary-and-ascii-files-to-string-or-similar-in-v/185595#1855950Answer by tomc13 for Simplest, efficient ways to read binary and ascii files to string or similar in various languages.tomc132008-10-09T01:28:11Z2008-10-09T01:28:11Z<p>rebol:</p>
<p>1) data: read %file</p>
<p>2) write %file data</p>
<p>3) bin: read/binary %file</p>
<p>4) write/binary %file bin</p>
http://stackoverflow.com/questions/181634/simplest-efficient-ways-to-read-binary-and-ascii-files-to-string-or-similar-in-v/185608#1856080Answer by Kknd for Simplest, efficient ways to read binary and ascii files to string or similar in various languages.Kknd2008-10-09T01:34:44Z2008-10-14T03:50:24Z<p><strong>Lua</strong></p>
<pre><code>local input = io.open("input", "r")
local output = io.open("output", "w")
local content = input:read("*a")
output:write(content)
input:close()
output:close()
</code></pre>
<p>For binary mode, just add "b" to the flag in open(file, flag)</p>
http://stackoverflow.com/questions/181634/simplest-efficient-ways-to-read-binary-and-ascii-files-to-string-or-similar-in-v/185614#1856141Answer by ephemient for Simplest, efficient ways to read binary and ascii files to string or similar in various languages.ephemient2008-10-09T01:38:24Z2008-10-09T02:12:30Z<p>Lazy Perl:</p>
<pre><code>open FH, '<', 'input.txt';
undef $/; # don't split on newlines, just read the whole thing
# binmode FH;
$contents = <FH>;
close FH;
open FH, '>', 'output.txt';
# binmode FH;
print FH $contents;
close FH;
</code></pre>
<p>Even lazier (and hackish) Perl:</p>
<pre><code>$contents = do { local (@ARGV, $/) = 'input.txt'; <> }; # binmode ARGV; before <>
print {do {open my $fh, '>output.txt'; $fh}} $contents; # binmode $fh; before }
</code></pre>
<p>Very lazy Perl (reuse of code is good!):</p>
<pre><code>use File::Slurp;
$contents = read_file('input.txt'); # or read_file(..., binmode => ':raw')
write_file('output.txt', $contents); # or write_file(..., binmode => ':raw')
</code></pre>
http://stackoverflow.com/questions/181634/simplest-efficient-ways-to-read-binary-and-ascii-files-to-string-or-similar-in-v/185653#1856530Answer by ephemient for Simplest, efficient ways to read binary and ascii files to string or similar in various languages.ephemient2008-10-09T01:58:39Z2008-10-09T02:08:34Z<p>C on UNIX, ASCII and binary is all the same:</p>
<pre><code>#include <fcntl.h>
#include <stdlib.h>
#include <sys/mman.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <unistd.h>
struct stat info;
int fd, length;
void *contents;
fd = open("input.txt", O_RDONLY);
fstat(fd, &info);
length = info.st_size;
if (sane) {
contents = malloc(length);
read(fd, contents, length);
}
else // because UNIX is awesome!
contents = mmap(NULL, length, PROT_READ, MAP_PRIVATE, fd, 0);
close(fd);
fd = open("output.txt", O_RDONLY | O_CREAT | O_TRUNC);
if (sane)
write(fd, contents, length);
else { // because UNIX is awesome!
void *output;
ftruncate(fd, length);
output = mmap(NULL, length, PROT_WRITE, MAP_SHARED, fd, 0);
memcpy(output, input, length);
munmap(output);
}
close(fd);
if (sane)
free(contents);
else
munmap(contents, length);
</code></pre>
<p>Caution, complete lack of error checking.</p>
http://stackoverflow.com/questions/181634/simplest-efficient-ways-to-read-binary-and-ascii-files-to-string-or-similar-in-v/190069#1900691Answer by ephemient for Simplest, efficient ways to read binary and ascii files to string or similar in various languages.ephemient2008-10-10T03:50:34Z2008-10-10T14:24:58Z<p>Haskell, 1/2:</p>
<pre><code>main = do
contents <- readFile "input.txt"
writeFile "output.txt" contents
</code></pre>
<p>Haskell, 3/4:</p>
<pre><code>import qualified Data.ByteString.Lazy as B
main = do
contents <- B.readFile "input.txt"
B.writeFile "output.txt" contents
</code></pre>
http://stackoverflow.com/questions/181634/simplest-efficient-ways-to-read-binary-and-ascii-files-to-string-or-similar-in-v/195356#1953565Answer by Milan Babuškov for Simplest, efficient ways to read binary and ascii files to string or similar in various languages.Milan Babuškov2008-10-12T11:12:22Z2008-10-14T22:18:41Z<p>C++</p>
<p>There are many ways, you pick which is the most elegant for you.</p>
<p>Reading into char*:</p>
<pre><code>ifstream file ("file.txt", ios::in|ios::binary|ios::ate);
if (file.is_open())
{
size = file.tellg();
char *contents = new char [size];
file.seekg (0, ios::beg);
file.read (contents, size);
file.close();
}
</code></pre>
<p>Into std::string:</p>
<pre><code>std::ifstream in("file.txt");
std::string contents((std::istreambuf_iterator<char>(in)),
std::istreambuf_iterator<char>());
</code></pre>
<p>Into vector<char>:</p>
<pre><code>std::ifstream in("file.txt");
std::vector<char> contents((std::istreambuf_iterator<char>(in)),
std::istreambuf_iterator<char>());
</code></pre>
<p>Into std::string, using std::stringstream:</p>
<pre><code>std::ifstream in("file.txt");
std::stringstream buffer;
buffer << in.rdbuf();
std::string contents(buffer.str());
</code></pre>
<p>file.txt is just an example, everything works fine for binary files as well, just make sure you use ios::binary in ifstream constructor.</p>
<p>Writing goes the other way around and uses ofstream instead.</p>
http://stackoverflow.com/questions/181634/simplest-efficient-ways-to-read-binary-and-ascii-files-to-string-or-similar-in-v/198254#1982541Answer by Brian for Simplest, efficient ways to read binary and ascii files to string or similar in various languages.Brian2008-10-13T16:54:08Z2009-04-17T16:32:19Z<p>VB6</p>
<pre><code>'1/3
Private Function ReadFile(Filename As String) As String
Dim fileHandle As Long
fileHandle = FreeFile
Open Filename For Binary As #fileHandle
ReadFile = Space(LOF(fileHandle))
Get #fileHandle, 1, ReadFile
Close #fileHandle
End Function
'2/4
Private Sub WriteFile(InputData As String, Filename As String)
Dim fileHandle As Long
fileHandle = FreeFile
Open Filename For Binary As #fileHandle
Put #fileHandle, 1, InputData
Close #fileHandle
End Sub
</code></pre>
<p>Note that this won't work quite right for VB-formatted files made using standard VB i/o for strings, since VB adds quote and the like (well, it'll work but have the quotes and whatnot). However, really long strings tend to be much faster with this method. Also note that this is probably not a good idea with unicode (see <a href="http://www.cyberactivex.com/UnicodeTutorialVb.htm#FileIO" rel="nofollow">here</a> instead).</p>
<p><strong>Edit</strong>: The following test may fail:</p>
<pre><code>WriteFile tmpo, "c:\tmp\jox.dat"
jjj = ReadFile("c:\tmp\jox.dat")
if tmpo = jjj then
'pass
else
'fail
end if
</code></pre>
http://stackoverflow.com/questions/181634/simplest-efficient-ways-to-read-binary-and-ascii-files-to-string-or-similar-in-v/216857#2168570Answer by ephemient for Simplest, efficient ways to read binary and ascii files to string or similar in various languages.ephemient2008-10-19T19:42:54Z2008-10-19T19:42:54Z<p>Standard ML, 1/2:</p>
<pre><code>val contents =
let val fh = TextIO.openIn "input.txt"
in TextIO.inputAll fh before TextIO.closeIn fh end
let val fh = TextIO.openOut "output.txt"
in TextIO.output (fh, contents); TextIO.closeOut fh end
</code></pre>
<p>Replace <code>TextIO</code> with <code>BinIO</code> for 3/4.</p>
http://stackoverflow.com/questions/181634/simplest-efficient-ways-to-read-binary-and-ascii-files-to-string-or-similar-in-v/324792#3247921Answer by Oscar Reyes for Simplest, efficient ways to read binary and ascii files to string or similar in various languages.Oscar Reyes2008-11-27T23:17:18Z2008-11-27T23:30:35Z<h2>Java</h2>
<p>Here is the simplest I cat get. I'm not that sure for efficient. </p>
<p>Anyone has a sample using nio?</p>
<pre><code>C:\oreyes\samples\java\reading>type Read.java
import java.io.*;
public class Read{
private byte[] readBin( String file ) throws IOException {
FileInputStream fis = new FileInputStream( file );
byte[] data = new byte[fis.available()];
fis.read( data );
fis.close();
return data;
}
private void writeBin( String file, byte[] data ) throws IOException {
FileOutputStream fos = new FileOutputStream( file );
fos.write( data, 0, data.length );
fos.close();
}
private void writeToFile( String file, String content ) throws IOException {
PrintWriter out = new PrintWriter( new File( file ) );
out.print( content );
out.close();
}
private String readFile( String file ) throws IOException {
BufferedReader reader = new BufferedReader( new FileReader (file));
String line = null;
StringBuilder stringBuilder = new StringBuilder();
String ls = System.getProperty("line.separator");
while( ( line = reader.readLine() ) != null ) {
stringBuilder.append( line );
stringBuilder.append( ls );
}
return stringBuilder.toString();
}
public static void main( String [] args ) throws IOException {
Read r = new Read();
r.writeToFile("x.java", r.readFile("Read.java"));
r.writeBin("x.class", r.readBin("Read.class"));
assert new File("x.java").exists();
assert new File("x.class").exists();
assert new File("Read.java").length() == new File("x.java").length();
assert new File("Read.class").length() == new File("x.class").length();
System.out.println("finish");
}
}
C:\oreyes\samples\java\reading>java -ea Read
finish
</code></pre>
http://stackoverflow.com/questions/181634/simplest-efficient-ways-to-read-binary-and-ascii-files-to-string-or-similar-in-v/664003#6640030Answer by rogerdpack for Simplest, efficient ways to read binary and ascii files to string or similar in various languages.rogerdpack2009-03-19T20:51:41Z2009-03-19T20:51:41Z<p>Ruby take 2:
reading
File.read("filename.ext")</p>
<p>writing
File.open("filename.ext") do |f|
f.write "stuff"
end</p>
http://stackoverflow.com/questions/181634/simplest-efficient-ways-to-read-binary-and-ascii-files-to-string-or-similar-in-v/761451#7614511Answer by TMN for Simplest, efficient ways to read binary and ascii files to string or similar in various languages.TMN2009-04-17T17:41:02Z2009-04-17T17:41:02Z<p>PL/I:</p>
<pre><code>READFILE: PROCEDURE OPTIONS(MAIN, REORDER);
DECLARE INFILE FILE RECORD INPUT ENVIRONMENT(RECORD_SIZE(80));
DECLARE EOF BIT(1) INIT('1'B);
DECLARE LINE_BUF CHARACTER(80);
DECLARE FILE_BUF CHARACTER(*);
OPEN FILE(INFILE) TITLE('file.txt');
ON ENDFILE(INFILE) EOF = '1'B;
READ FILE(INFILE) INTO(LINE_BUF);
DO WHILE(^EOF)
FILE_BUF = FILE_BUF || LINE_BUF;
READ FILE(INFILE) INTO(LINE_BUF);
END;
CLOSE FILE(INFILE);
END READFILE;
</code></pre>
http://stackoverflow.com/questions/181634/simplest-efficient-ways-to-read-binary-and-ascii-files-to-string-or-similar-in-v/761494#7614942Answer by Jon Benedicto for Simplest, efficient ways to read binary and ascii files to string or similar in various languages.Jon Benedicto2009-04-17T17:51:00Z2009-04-17T17:51:00Z<p>PHP:</p>
<ol>
<li><p><code>$str = file_get_contents('filename.txt');</code></p></li>
<li><p><code>file_put_contents('filename.txt', $str);</code></p></li>
<li><p><code>$bin = file_get_contents('filename.bin');</code></p></li>
<li><p><code>file_put_contents('filename.bin', $bin);</code></p></li>
</ol>
http://stackoverflow.com/questions/181634/simplest-efficient-ways-to-read-binary-and-ascii-files-to-string-or-similar-in-v/761572#7615720Answer by T.E.D. for Simplest, efficient ways to read binary and ascii files to string or similar in various languages.T.E.D.2009-04-17T18:12:12Z2009-04-17T18:12:12Z<p>That's pretty easy in Ada, although it can get a bit more complex if you want to do something like pre-size the string properly.</p>
<p>For ASCII (actually LATIN1):</p>
<pre><code>Input, Output : Text_IO.File_Type;
String_Read : String (1..256);
Text_IO.Open (Input, Text_IO.In_File, "infile.txt");
Text_IO.Open (Output, Text_IO.Out_File, "outfile.txt");
Text_IO.Get (Input, String_Read);
Text_IO.Get (Output, String_Read);
</code></pre>
<p>For an arbitrary data type its pretty much the same code, but using an instantiation of the generic Sequential_IO:</p>
<pre><code>package My_Type_IO is new Sequential_IO(My_Type);
Input, Output : My_Type_IO_IO.File_Type;
My_Type_Read : My_Type;
My_Type_IO.Open (Input, My_Type_IO.In_File, "infile.txt");
My_Type_IO.Open (Output, My_Type_IO.Out_File, "outfile.txt");
My_Type_IO.Get (Input, My_Type_Read);
My_Type_IO.Get (Output, My_Type_Read);
</code></pre>