Tagged Questions
The read tag has no wiki summary.
31
votes
8answers
11k views
Ways to save enums in database
I am wondering what the best ways to save enums into a database is.
I know there are name() and valueOf() methods to make it into a String back. But are there any other (flexible) options to store ...
27
votes
3answers
34k views
Reading binary file in Python
In Python, how do I read a binary file and loop over each byte of that file?
17
votes
9answers
32k views
How can I read and manipulate CSV file data in C++?
Pretty self-explanatory, I tried google and got a lot of the dreaded expertsexchange, I searched here as well to no avail. An online tutorial or example would be best. Thanks guys.
14
votes
5answers
626 views
13
votes
2answers
27k views
How can I read SMS messages from the inbox programmatically in Android?
I want to retrieve the SMS messages from the inbox and display them?
12
votes
5answers
8k views
create ini file, write values in PHP
I cannot find a way that easily lets me create a new file, treat it as an ini file (not php.ini or simiilar... a separate ini file for per user), and create/delete values using PHP. PHP seems to offer ...
12
votes
3answers
8k views
C# file read/write fileshare doesn't appear to work
My question is based off of inheriting a great deal of legacy code that I can't do very much about. Basically, I have a device that will produce a block of data. A library which will call the device ...
11
votes
2answers
555 views
In Clojure 1.3, How to read and write a file
I'd like to know the "recommended" way of reading and writing a file in clojure 1.3 .
How to read the whole file
How to read a file line by line
How to write a new file
How to add a line to an ...
11
votes
2answers
431 views
Clojure: Equivalent to Common Lisp READ function?
When I want to read in an S-expression stored in a file into a running Common Lisp program, I do the following:
(defun load-file (filename)
"Loads data corresponding to a s-expression in file with ...
10
votes
11answers
22k views
C#: How do I read a specified line in a text file?
Given a text file, how would I go about reading an arbitrary line and nothing else in the file?
Say, I have a file test.txt. How would I go about reading line number 15 in the file?
All I've seen ...
9
votes
4answers
811 views
Using read() directly into a C++ std:vector
I'm wrapping up user space linux socket functionality in some C++ for an embedded system (yes, this is probably reinventing the wheel again).
I want to offer a read and write implementation using a ...
9
votes
5answers
9k views
MemoryStream.Read doesn't copy bytes to buffer - c#
I don't really get it and it's driving me nuts.
i've these 4 lines:
Image img = Image.FromFile("F:\\Pulpit\\soa.bmp");
MemoryStream imageStream = new MemoryStream();
img.Save(imageStream, ...
9
votes
2answers
4k views
Haskell: Inserting every line from a file into a list
I'm currently working on project with Haskell, and have found myself some trouble. I'm supposed to read and insert into a list each line in a "dictionary.txt" file, but I can't seem to do so. I've got ...
8
votes
6answers
529 views
Python how to read N number of lines at a time
I am writing a code to take an enormous textfile (several GB) N lines at a time, process that batch, and move onto the next N lines until I have completed the entire file. (I don't care if the last ...
8
votes
2answers
280 views
Why does Haskell appear to default to reading Int when reading Num?
I didn't expect the following code to work:
foo :: (Num a) => a -> a
foo x = x + x
main = do
print (foo (read "7"))
because it is not possible to fully infer the type of (read "7") based ...
8
votes
2answers
2k views
What are the pros and cons of fs.createReadStream vs fs.readFile in node.js?
I'm mucking about with node.js and have discovered two ways of reading a file and sending it down the wire, once I've established that it exists and have sent the proper MIME type with writeHead:
// ...
8
votes
13answers
661 views
Reading other's code [closed]
Possible Duplicate:
How do I begin reading source code?
I've been studying C++ and Lisp for a while now..
Bur, everytime I try getting others code to read.
WOW, it seems like I am very ...
8
votes
6answers
833 views
Python: slow read & write for millions of small files
Conclusion:
It seems that HDF5 is the way to go for my purposes. Basically "HDF5 is a data model, library, and file format for storing and managing data." and is designed to handle incredible ...
8
votes
3answers
2k views
Socket programming: problem with recv/read
EDIT: the code below has been fixed to receive and send properly AND to account for the actual bytes of messages sent annd recieved (latter thanks to EJP)
Hey guys, I'm programming in C, Unix.
I ...
8
votes
5answers
5k views
Read numbers from a text file in C#
This is something that should be very simple. I just want to read numbers and words from a text file that consists of tokens separated by white space. How do you do this in C#? For example, in C++, ...
8
votes
4answers
3k views
Go - How to read/write to file?
I've been trying to learn Go / Golang on my own, but I've been stumped on trying read and write to ordinary files.
I can get as far as: inFile,_ := os.Open(INFILE,0,0);
but actually getting the ...
7
votes
5answers
956 views
reading two integers in one line using C#
i know how to make a console read two integers but each integer by it self like this
int a = int.Parse(Console.ReadLine());
int b = int.Parse(Console.ReadLine());
if i entered two numbers, i.e (1 ...
6
votes
5answers
293 views
very fast text file processing (C++)
i wrote an application which processes data on the GPU. Code works well, but i have the problem that the reading part of the input file (~3GB, text) is the bottleneck of my application. (The read from ...
6
votes
2answers
222 views
Read program STDIN in Delphi
I have the following batch script:
dir | myapp.exe
And the program has this source (more or less):
procedure TForm1.FormCreate(Sender: TObject);
var buff: String;
begin
Read(buff);
...
6
votes
1answer
462 views
Fastest way to read data from MySQL using C#
I'm wondering if there is a faster method than using something like:
while (Reader.Read())
to read the results of mysql select queries.
I'm randomly pulling 10,000 rows from a database and would ...
6
votes
2answers
7k views
PHP Read xlsx Excel 2007 file
I am using oleread to read uploaded xls file. But I am not able to read xlsx files saved in excel-2007 format. can someone help me on how to read xlsx file in PHP.
6
votes
4answers
18k views
how to get number of rows using SqlDataReader in C#
my question is about how to get number of rows using SqlDataReader in C#. I've seen some answers around the net about this but none were clearly defined except for one that states to do a while loop ...
6
votes
3answers
5k views
How do I open an already opened file with a .net StreamReader?
I have some .csv files which I'm using as part of a test bench. I can open them and read them without any problems unless I've already got the file open in Excel in which case I get an IOException:
...
5
votes
3answers
104 views
parsing from text file to graph (python)
I'm having trouble figuring out how to parse a text file into a graph in python. The file is in the following format:
4 4
o . o . o . o
- - . -
o . o . o | o
. - . .
o | o . o . o
. - ...
5
votes
2answers
159 views
Fortran read statement reading beyond an end of line
do you know if the following statement is guaranteed to be true by one of the fortran 90/95/2003 standards?
"Suppose a read statement for a character variable is given a blank line (i.e., containing ...
5
votes
3answers
129 views
Reading csv file, having numbers and strings in one column
I am importing a 3 column CSV file. The final column is a series of entries which are either an integer, or a string in quotation marks.
Here are a series of example entries:
1,4,"m"
1,5,20
...
5
votes
5answers
196 views
ReadLine() vs Read() to Get CR and LF Efficiently?
I am working on a C# program to determine the line length for each row in multiple large text files with 100,000+ rows before importing using an SSIS package. I will also be checking other values on ...
5
votes
2answers
193 views
How to communicate RFID tags with IDBlue RFID pen using iPhone?
For iphone is it possible to communicate RFID tags with IDBlue RFID pen (bluetooth connected) and store data into my application?
If yes then is there any some readymade component or code library ...
5
votes
4answers
126 views
Python - How do I make a dictionary inside of a text file?
I'm writing a program that allows the user to create a username and password. How do I write this as a dictionary into a text file, and then retrieve it when I need it? Also, if there is an easier way ...
5
votes
3answers
460 views
read entire binary file into an array in single call c++
I am trying to read a binary file into an array of structure
struct FeaturePoint
{
FeaturePoint (const int & _cluster_id,
const float _x,
const float _y,
...
5
votes
6answers
208 views
get the value of notepad and put it inside the c# string?
Notepad:
Hello world!
How I'll put it in C# and convert it into string..?
So far, I'm getting the path of the notepad.
string notepad = @"c:\oasis\B1.text"; //this must be Hello world
Please ...
5
votes
3answers
147 views
“read”-ing string data into haskell “data” types
thanks to the excellent tutorial at http://lisperati.com/haskell/hasktut.pdf, I know how to read a string (in this case read from a file at "people.txt" directly into a 'type':
type Person = [Int]
...
5
votes
2answers
129 views
How can I use read on a string that is not double quoted?
I'm reading values from in from a console using readLn.
I'd like to write a function:
requestValue :: String -> IO a
requestValue s = do
putStrLn $ "Please enter a new value for " ++ s
...
5
votes
7answers
1k views
Fastest way to read numerical values from text file in C++ (double in this case)
Currently, my code is simply this:
void ReadFile(double Cst[][1000], char* FileName, int height)
FILE* ifp;
double value;
int nRead = 0;
int mRead = 0;
//open the file, check if successful
ifp = ...
5
votes
2answers
234 views
Reading a mix of integers and characters from a file in C++
I have some trouble with reading of a file in C++. I am able to read only integers or only alphabets. But I am not able to read both for example, 10af, ff5a. My procedure is as follows:
int main(int ...
5
votes
4answers
164 views
C++ commands executing out of order
I am attempting to make a simple shell program, and looking at a few examples have seen that most people use getline() to get input, however I have been trying to use read() and noticed a weird bug ...
5
votes
1answer
6k views
Android how to use Environment.getExternalStorageDirectory()
How can i use Environment.getExternalStorageDirectory() to read a a stored image from the SD card or is there a better way to do it?
5
votes
2answers
101 views
What are the conditions under which a short read/write can occur?
The read and write functions (and relatives like send, recv, readv, ...) can return a number of bytes less than the requested read/write length if interrupted by a signal (under certain ...
5
votes
5answers
193 views
Need suggestion on my approach : to read a file which is being written continuously?
I have one csv file, which is being written continuously by script. It writes timestamp and some other data per row. I have to read the latest data first.
Currently I am using RandomAccessFile in java ...
5
votes
2answers
1k views
How to use while read to read the last line in a file if there’s no newline at the end of the file?
Let’s say I have the following Bash script:
while read SCRIPT_SOURCE_LINE; do
echo "$SCRIPT_SOURCE_LINE"
done
I noticed that for files without a newline at the end, this will effectively skip the ...
5
votes
6answers
2k views
What is a good way to read line-by-line in R?
I have a file where each line is a set of results collected in specific replicate of an experiment. The number of results in each experiment (i.e. number of columns in each row) may differ. There's ...
5
votes
3answers
975 views
Read from Console in F#
Does anyone know if there is a builtin function for reading from the console likewise to the printfn function?
The only method I've seen so far is using System.Console.Read() but it doesn't feel as ...
5
votes
2answers
278 views
D (Tango) Read all standard input and assign it to a string
In the D language how I can read all standard input and assign it to a string (with Tango library) ?
5
votes
13answers
6k views
Reading specific lines only (Python)
I'm using a for loop to read a file, but I only want to read specific lines, say line #26 and #30. Is there any built-in feature to achieve this?
Thanks
5
votes
3answers
12k views
jquery - Read a text file?
I have an html file that I'd like to open and read from, but I'm not entirely sure how to do that... Basically, it's a fairly large file (big.html), and, in a separate file (titles.html), I have some ...