Tagged Questions

0
votes
1answer
145 views

“WindowsError: exception: access violation…” - ctypes question

Howdy all - Here is the prototype for a C function that resides in a DLL: extern "C" void__stdcall__declspec(dllexport) ReturnPulse(double*,double*,double*,double*,double*); In …
-1
votes
2answers
37 views

need help writing hexadecimals to an exe file

can somone tell me how to write these hexadecimals to an exe file while still having it exec 4D 5A 50 00 02 00 00 00 04 00 0F 00 FF FF 00 00 B8 00 00 00 00 00 00 00 40 00 1A 0 …
0
votes
2answers
61 views

Java: Why isn’t my file writing working?

I'm trying to write a file from my Java program, but nothing happens. I'm not getting any exceptions or errors, it's just silently failing. try { File outputFi …
1
vote
5answers
60 views

How to write into a file in PHP?

Hello everybody!!! I have this script on one free PHP-suppoting server: <html> <body> <?php $file = fopen("lidn.txt","a"); fclose($file); ?> </body> & …
0
votes
6answers
62 views

need to write at beginning of file with php

Im making this program and im trying to find out how to write data to the beginning of a file rather than the end. "a"/append only writes to the end, how can i make it write to the …
1
vote
4answers
74 views

Reading and writing to console in Java

What is the most efficient class to use to read from and write to console in Java?
0
votes
4answers
109 views

PHP file writing optimization

EDIT: Optimization results at end of this question! hi, i have a following code to first scan files in a specific folder and then read every file line by line and after numerous " …
1
vote
3answers
71 views

How to read/write nodes and child nodes from xml file in c# maybe using xpath?

Hello, Maybe somebody could help me. I need a two methods. The first should open a xml file and get all nodes with the given parameter ie.: XML file (file.xml): <Menu id="1 …
1
vote
1answer
86 views

FileStream.Write not Writing to File

I'm passing some Base64 encoded strings through WCF, and I'm attempting to write them to a file. However, despite the fact that my FileStream object has a Length greater than 0, my …
4
votes
2answers
81 views

C# locking read while writing binary file

Hi, I am trying to figure out how to write a binary file with a FileStream and BinaryWriter, and keep the file locked for read while I am writing. I specifically dont want other …
7
votes
2answers
245 views

Which is faster, writing raw data to a drive, or writing to a file?

I need to write data into drive. I have two options: write raw sectors.(_write(handle, pBuffer, size);) write into a file (fwrite(pBuffer, size, count, pFile);) Which way is fa …
0
votes
1answer
75 views

C# Write to Specific XML Node.

I have a xml database with the following format: <Students> <Student ID= *GUID NUMBER*> <FullName>John Smith</FullName> <Address>Blah blah blah& …
1
vote
2answers
55 views

Checking a file for a certain string in Java.

I'm trying to have my application read through a text file and look for a string. If the string does not exist, it makes it using println. The only problem I'm having is that it do …
0
votes
2answers
65 views

iPhone sqlite3 locked, can only read, not write.

So I have been working on this project for a short while now. I have no problems with reading data from the DB, and formatting it into UITableViews and what not. But now I am wanti …
1
vote
3answers
121 views

Overwriting files permission - C#/ASP.NET

While implementing XML file reading/writing in my application I saw that when I call XElement.Save("myfile.xml") it will overwrite an existing file. Is this behavior default for a …

1 2 3 4 5 6 next
15 30 50 per page