Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
4answers
3k views

A Haskell function of type: IO String-> String

I wrote a bunch of code in Haskell to create an index of a text. The top function looks like this: index :: String -> [(String, [Integer])] index a = [...] Now I want to give this function a ...
8
votes
6answers
293 views

Why is file I/O in large chunks SLOWER than in small chunks?

If you call ReadFile once with something like 32 MB as the size, it takes noticeably longer than if you read the equivalent number of bytes with a smaller chunk size, like 32 KB. Why? (No, my disk ...
6
votes
2answers
522 views

Strange behavior with FileStream.WriteFile

I'm working on a program that does heavy read/write random access on huge file (till 64 GB). Files are specifically structured and to make access on them I've created a framework; after a while I ...
5
votes
2answers
331 views

Why does readfile() exhaust PHP memory?

I've seen many questions about how to efficiently use PHP to download files rather than allowing direct HTTP requests (to keep files secure, to track downloads, etc.). The answer is almost always PHP ...
4
votes
2answers
81 views

Java bug? Can't read GB2312 file with Scanner directly

I have a file in GB3212 encoding (Chinese). File is downloaded from here http://lingua.mtsu.edu/chinese-computing/statistics/char/list.php?Which=MO as is with wget under Windows and stored into ...
4
votes
9answers
2k views

Read data from a text file using Java

I need to read a text file line by line using Java. I use available() method of FileInputStream to check and loop over the file. But while reading, the loop terminates after the line before the last ...
3
votes
2answers
114 views

how can i access logcat file on device

How can I access and read the logcat file (at "/system/bin/logcat") from the device, using my application. My phone is not rooted. Do I need a super user permission?
3
votes
3answers
232 views

PHP: Search in textfile after specific phrases / words and output

I’m trying to make a small php script to automate some work processes. What the script has to do is read a file (approximately 10-20kb per file). Then I need to search the file for some specific ...
3
votes
2answers
61 views

How to keep data formatted after reading from log files in djnago/python

I used this code to read the data from log files and display in browser. but its format is very hard to read as there were no line breaks and all text file appear in single paragraph data_file = ...
3
votes
1answer
104 views

C++ arguments changing while running

I've a very simple function that should read a txt file and return all lines by one vector of the type string. I've stepped trough it quite a few times with the debugger and the only thing i've ...
3
votes
4answers
595 views

Win32 ReadFile() refuses to read more than 16Mb at once?

I've got very strange problem on my Windows XP in VirtualBox. ReadFile() function refuses to read more than 16Mb of data in single call. It returns error code 87 (ERROR_INVALID_ARGUMENT). Looks like ...
3
votes
1answer
530 views

In Java, retrieve a JPEG from a URL and convert it to binary or hexadecimal form suitable for embedding in an RTF document

I'm trying to write a simple RTF document pretty much from scratch in Java, and I'm trying to embed JPEGs in the document. Here's an example of a JPEG (a 2x2-pixel JPEG consisting of three white ...
3
votes
7answers
3k views

Where to put a textfile I want to use in eclipse?

I need to read a text file when I start my program. I'm using eclipse and started a new java project. In my project folder I got the "src" folder and the standard "JRE System Library" + ...
3
votes
5answers
208 views

@readfile in php?

I hate that google can not search for symbols. I saw this in some sample code and wondered why there is an @ sign before the readfile function: @readfile($filename); What does it mean different to ...
2
votes
3answers
42 views

Determining successful download using php readfile

I need to know if a user selected download then clicked the cancel button, which is not the same as readfile having an error. I have inspected the count returned by the readfile function, but it ...
2
votes
3answers
88 views

NodeJS readFile() retrive filename

I am iterating over an array which contains filenames. For each of them, I invoke readFile(). When the corresponding callback is invoked, I wish to retrieve the filename passed to readFile() as a ...
2
votes
1answer
65 views

ReadFile() returns a blank data

I'm testing serial port communication by connecting COM port RD and TD pins together. The COM port has been initialized before the code below is executed. CString cs_Send = "F: 5000000 Hz, SF: 1.0, ...
2
votes
2answers
48 views

Removing spaces from MMAP in C

I'm trying to remove white spaces contained in a file and after I've read it using mmap, I proceed by removing white spaces by using a for-loop and shirting the next pointer to the current index but ...
2
votes
3answers
112 views

Java: Read array of integers from file

Say i have a file called "input.txt" that has a bunch of positive integers in it: 6 5 6 8 6 2 4 and so on....(one integer per line) I want to read this file and make it into an array. The first ...
2
votes
1answer
104 views

ReadFile doesn't signal EOF at the end of a PhysicalDrive

I'm trying to implement a dd equivalent in Windows. [Clarification: I'm trying to replicate the if=/dev/hda of=/dev/hdb functionality of dd, in order to migrate a windows installation to a larger HD. ...
2
votes
2answers
83 views

To read a .txt File of a particular Encoding type in C# [closed]

Possible Duplicate: How can I detect the encoding/codepage of a text file I have to read a (text) .txt file.But I don't know its encoding type.The encoding type may be Encoding.ANSI or ...
2
votes
2answers
49 views

Reading from a communications resource

I want to read some data from a device connected to a COM port. HANDLE handle =CreateFileW(L"\\\\.\\COM3", GENERIC_READ | GENERIC_WRITE, 0, NULL, OPEN_EXISTING, FILE_FLAG_OVERLAPPED, NULL); gives ...
2
votes
3answers
124 views

How is the logic behind storing program setting in text file like 'config.cfg'?

Often I see some software and specially games that store setting in a text file. I want to have same thing in my C# WinForms application too (I know it is possible to do with application settings for ...
2
votes
2answers
569 views

ReadFile() says it failed, but the error code is ERROR_SUCCESS

I'm using ReadFile() on Windows to read data from a serial port. This code was working fine at one point in time, but it's now failing and I'm trying to track down the source of the problem, so I ...
2
votes
4answers
143 views

How to match a text format to a string without regex in python?

I am reading a file with lines of the form exemplified by [ 0 ] L= 9 (D) R= 14 (D) p= 0.0347222 e= 10 n= 34 I saw Matlab code to read this file given by [I,L,Ls,R,Rs,p,e,n] = textread(f1,'[ %u ] ...
2
votes
2answers
326 views

ReadFile function on Windows XP fails with error code 2

I have a part of the project that is intended to re-read some portion of a file in a loop (prepended with the pointer movement to the beginning of the file). By start, the code opens the file and ...
2
votes
2answers
428 views

Haskell - readFile catch exception

I am trying to read file in Haskell with exception catching but cant get working. The code looks like: module Main where import System.Environment import System.IO import System.Exit ...
2
votes
1answer
270 views

get traffic caused by readfile()

I use readfile to let the client download a file through my server. Therefor I output the data which I receive from readfile('external-url') directly to the client. Now I want to determine the ...
2
votes
1answer
231 views

PHP: How to know if a user is currently downloading a file?

I'm developing a quick rapidshare-like site where the user can download files. First, I created a quick test setting headers and using readfile() but then I found in the comments section there's a way ...
2
votes
2answers
106 views

getting pure text from a document using c#

How can I get pure string from a document eliminating all the images or tables or figures. I will manipulate and create a word list of these documents. So I need just text part of documents using C#
2
votes
1answer
151 views

Can we know the contents of NSBundle in Xode project?

How to know the contents of NSbundle in XCode Porject?? bcoz issue is, I have placed a config.doc file in resource folder of my XCode project and i want to read the contents of that config.doc file, ...
2
votes
3answers
251 views

Reading from a File in current User appdata folder for C#

I'm trying to read from a file inside a the current users appdata folder in C# but i'm still learning so I have this int counter = 0; string line; // Read the file and ...
2
votes
4answers
786 views

Php readfile - Force Download

I am using a flash player to play some mp3 files. At firefox it loads them normally but at IE it doesn't. When i go to the url of the .mp3 file it shows the source code of the mp3 (instead of offering ...
2
votes
1answer
308 views

How to read line by line a CR-only file with Perl?

I'm trying to read a file which has only CR as line delimiter. I'm using Mac OS X and Perl v.5.8.8. This script should run on every platform, for every kind of line delimiter (CR, LF, CRLF). My ...
2
votes
5answers
2k views

PHP Streaming MP3

I have a very similar situation to the person who asked: http://stackoverflow.com/questions/1516661/can-i-serve-mp3-files-with-php Basically I am trying to protect mp3 files from direct download, so ...
2
votes
1answer
2k views

read single line from text file in objective-C

i'm new to iPhone programming and coding in XCode SDK.I want to access and read the configuration file which i have placed in Resource folder in XCode,my configuration file looks like this ...
2
votes
2answers
521 views

Spaces in filename in Zend Framework action similar to readfile

I grabbed this bit of code from the PHP.net readfile page: <?php // Action controller public function someAction() { $response = $this->_response; // Disable view and layout ...
2
votes
1answer
228 views

Downloading files with PHP - Only downloading one at a time!

I have a PHP file that serves up a file, but the problem is that no matter what browser is being used, if you click on 2 links that go to 2 separate files, the second download doesn't start until the ...
1
vote
2answers
72 views

Read file contents into an ArrayList

On a previous project I was required to read file contents into an array. Now I have to do the same thing only I have to read the contents into an Array List. A few problems I am encountering is ...
1
vote
1answer
39 views

When to use managed vs unmanaged memory in WriteFile() and ReadFile()

I got some example code from www.lvr.com showing how to use WriteFile() and ReadFile() to write/read from a USB device. In the example, Jan uses unmanaged memory as parameters to WriteFile() and ...
1
vote
1answer
32 views

Adobe reader online doesn't read all pdf?

As the title says i made a script to read pdf files. Only specifical files can be opened. All files last modified till 29-09-2008 can be opened. All files after can't. Here is my code: <!DOCTYPE ...
1
vote
5answers
57 views

Read a file from an unknown location?

I have got this read file code from microsoft @"C:\Users\computing\Documents\mikec\assignment2\task_2.txt" That works fine when im working on it, but when i am to hand in this assignment my ...
1
vote
1answer
39 views

How do I get a list of files in a java applet?

I am working on a collaborative project in Java, and thought it would be easiest to have it as an applet embedded in a webpage, and then everyone can add their child classes (of bonuses, enemies, etc) ...
1
vote
3answers
80 views

Reading XML file in Android

I have a questions.xml file which has a list of questions for my quiz, and I'm trying to read this into a question bank in my program. I have written the following method: // Creates the ...
1
vote
2answers
60 views

Read and split with c++

With c++ I read a file a;aa a;1 b;b bb;2 and split the lines, with this code #include <cstdlib> #include <iostream> #include <fstream> #include <vector> #include ...
1
vote
3answers
65 views

How to indicate whitespaces while reading from a .txt file

I have a simple .txt file with X,Y-values in it. It is structured like this: -25.7754 35.87 -22.1233 32.16 -20.361 30.75 etc. I am able to read single lines or the whole text to the end, ...
1
vote
1answer
61 views

Unable to get proper boolean output from method (Java)

I have written a boolean method which can be called upon to read information from a file. If certain exceptions are thrown, the method should return the boolean value "false." If not, it should ...
1
vote
1answer
69 views

PHP readfile fails but gives no error

Can anyone help me with this nonsense problem? <?php if(!readfile($path)) { $error = error_get_last(); ...
1
vote
1answer
140 views

Device driver: Windows ReadFile function timeout

I am using a device driver that occasionaly misses an interrupt from hardware. To read data from the device, I use the function BOOL WINAPI ReadFile( __in HANDLE hFile, __out ...
1
vote
4answers
225 views

ReadFile Kernel32 Maximum Buffer Size

I am reading directly from a disk using C# and pinvoking the kernel32 ReadFile method. I notice that with larger reads (currently only reading in single chunks) the buffer size is out of range. Does ...

1 2 3 4