Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
14answers
37k views

Reading/Writing a MS Word file in PHP

Is it possible to read and write Word (2003 and 2007) files in PHP without using a COM object? I know that I can: $file = fopen('c:\file.doc', 'w+'); fwrite($file, $text); fclose(); but Word will ...
6
votes
1answer
161 views

How do I calculate the dsp address for a readwrite application in the beagleboard?

I'm trying to run the readwrite example in the dsplink on the beagleboard. To do so, I need to give the dsp address as a command line parameter. How do I know what is the dsp address? I have the ...
5
votes
4answers
5k views

Reading/Writing MS Word files in Python

Is it possible to read and write Word (2003 and 2007) files in Python without using a COM object? I know that I can: f = open('c:\file.doc', "w") f.write(text) f.close() but Word will read it as an ...
4
votes
1answer
228 views

Write/read a Common Lisp (SBCL) hash-table, or alternative

I would like to write/read a hash-table to/from disk, but it is not a (print)able object. I won't know the key names so I can't think of a way to do it manually. I read that there might be ...
4
votes
5answers
2k views

.NET Excel Library that can read/write .xls files

I'm looking for an Excel library which reads/writes .xls (not .xlsx) files. I'm using excellibrary but it's very buggy and I can't seem to open the files I create. The issue has been known for almost ...
4
votes
4answers
3k views

read and write to same socket (TCP) using select

We're writing a client and a server to do (what I thought was) pretty simple network communications. Mulitple clients connect to the server which then is supposed to send the data back to all other ...
3
votes
5answers
245 views

Writing to stdin and reading from stdout (UNIX/LINUX/C Programming)

I was working on an assignment where a program took a file descriptor as an argument (generally from the parent in an exec call) and read from a file and wrote to a file descriptor, and in my testing, ...
3
votes
0answers
75 views

Errors while trying to build ReadWrite example in Code Composer Studio 4

I'm trying to build the Read Write example in CCS4 and get many "undefined identifier" errors: identifier "MAX_PROCESSORS" is undefined identifier "MPCSOBJ_PROC_PADDING" is undefined ...
2
votes
1answer
259 views

Read/write synchronization

I have a data structure whose operations can be categorized as read operations (e.g. lookup) and write operations (e.g. insertion, removal). These operations should be synchronized so that: Read ...
1
vote
0answers
16 views

Editing Excel sheet Using JXL library in android

I am using jxl library in my application to edit excel file stored in external storage of galaxy tab. But every time i try to write the excel it creates a copy of existing excel file.It is writing all ...
1
vote
2answers
115 views

Parse html using Perl

I have the following html- <a href="http://address.com">John</a>: I really <b>love</b> <b>soccer</b>; I want to parse it into a csv where I would have name = ...
1
vote
2answers
291 views

Nullsoft installer, Win7, how to install read/write data directories?

We created an installer (Nullsoft Install System v2.46) that installs the application, plus some (nested) data directories, which include (text) data files that are read/write accessed from the ...
1
vote
1answer
168 views

configparser reading and writing

I'm using Python 3.2 and the configparser module, and running into some problems. I need to read, then write to a config file. I tried the following: import configparser data = open('data.txt', 'r+') ...
1
vote
1answer
196 views

Reading/Writing an online SQLite Database iPhone

I've got a database full of usernames and passwords etc. But i need to able to either download a fresh copy of the database every time the user opens the applciation, or even better, read/write to the ...
1
vote
1answer
191 views

shared file synchronization (read/write)

I wrote in PHP code that it will "fopen" a file(lets call it TXT) and write there the chosen checkbox, then later another process(lets call it PROC1- in c code) needs to read the file(TXT). I need to ...
1
vote
3answers
248 views

Problem sending multiple strings one by one using sockets

I am new to socket programming. Need to send multiple strings one-by-one to server and collect the resulting string. Now the problem is that using send/write function in client, all the strings are ...
1
vote
1answer
73 views

perl6/rakudo: Problem with writing on the loop-variable

#!perl6 use v6; my $longest = 3; my @list = <a b c d e f>; for @list -> $element is rw { $element = sprintf "%*.*s", $longest, $longest, $element; $element.say; } This works. But ...
1
vote
1answer
128 views

How to read\write settings from a Visual Studio Project file using NuGet?

I'm interested in creating a NuGet package for a documentation tool I'm writing. Ideally, I'd like the user to not have to configure my tool in anyway. In order to do this, I need to be able to read ...
1
vote
3answers
267 views

how to lock a DB table or a range of rows for writing?

I have a simple table with a primary key. Most of the read operations fetch one row by the exact value of the key. The data in each row maintains some relationship with rows before and after it in ...
1
vote
2answers
2k views

Reading From/Writing To an Access Database in VB.Net 2010

I have been working on this for a few days now and I have checked two or three books I have laying around for VB.Net 2003 and the method to do this has changed. Also, I have searched this website for ...
1
vote
2answers
543 views

Improve performance of MS Excel writing

I am facing performance issues while reading/writing data from/to MS-Excel cells. I am using MS Excel 11.0 object library for automation with VB.NET. Currently it takes too much time to read and ...
1
vote
4answers
131 views

Persist changes in C

I am developing a database-like application that stores a a structure containing: struct Dictionary { char *key; char *value; struct Dictionary *next; }; As you can see, I am using a ...
1
vote
1answer
102 views

Do Windows 7 Logo Client requirements allow an application to read/write in registry (HKLM)?

I read the windows 7 Client Requirements and they don't seem to prohibit from writing in registry (Local Machine key). I have a C# .exe application which reads/writes values in ...
1
vote
2answers
23 views

One service appends to and another one truncates a file

I have a service that controls an RS-232 device and logs actions to a file. I am to write another service which will read the log file line by line and run some queries on a database then delete all ...
1
vote
2answers
988 views

C# CSLA business object dilemma: read-only vs read/write

I'm part of a team tasked to revamping our old VB6 UI/COBOL database application to modern times. Before I was hired, the decision was made (largely on sales, I'm sure) to redo the UI before the ...
0
votes
0answers
60 views

read/write files to/from a Windows Mobile device (via USB)

I'm talking about a device with Windows Mobile 6.5, Windows 7 recognizes it and I can browse it. I has a name, say MyDevice, but when I try to open/create a file there, it fails. For example ifstream ...
0
votes
1answer
90 views

Plist Read and Write iPhone

I am having troubles with my class which reads and writes data to a plist. Here is some code: This first chunk is from my custom class with all my plist read and write methods. -(NSString *) ...
0
votes
2answers
106 views

Read/Write to/from PageFile

I use an embedded DB for two applications that one of them is Server and another one is client.The client side app. can send fetch data request to server side to retrieve data and show in a table (or ...
0
votes
1answer
134 views

Writing/Reading User-Defined settings in app.config file

I am trying to read and write into app.config file of user-settings. I found a snippet of a code for working with confige file. I finally got it compiling and running, but it absolutely seems to be ...
0
votes
1answer
93 views

simultaneous 2 or more read/write to/from harddisk

it is said that there is only one spindle in hard disk which reads or writes data to/from hard disk, how is it possible to write or read 2 or more data's to/from hard disk SIMULTANEOUSLY. the ...
0
votes
2answers
86 views

Java - allow access to files during I/O

Is there any way to allow access to files while they are being used in Java? BufferedWriter bw = new BufferedWriter(new FileWriter(file)); BufferedReader br = new BufferedReader(new ...
0
votes
1answer
56 views

A question to do with many users reading/writing the exact same xml file

I have created a website where a non-trivial number of users will be reading from and/or writing to a single XML file at the exact same time. I am not asking for suggestions on an alternative to the ...
0
votes
0answers
65 views

Problem with compiled matlab program; not reading and writing from .txt data files unless it's launched from command prompt

My compiled matlab program is not reading and writing txt files properly (although the .m file version behaves fine). I'm using low level read/write functions like fprintf, fscanf, textscan, and ...
0
votes
2answers
188 views

Write/Read a series of different serialized objects to/from a file

I have a collection of objects: Map<BufferedImage, Map<ImageTransform, Set<Point>>> map I want to write those to a file, and then be able to read them back in the same struct. ...
0
votes
1answer
56 views

iPod client permanently sending data to C server?

I have an iOS client set up with a linux C server via TCP/IP. The problem i am facing is: After the connection is done, the server waits for data (read()) and presents it in the screen once received ...
0
votes
1answer
333 views

read / write mp4 id3 tags with PHP

I need to be able to at very least read and preferably write id3 tags connected to an mp4 video file. I've looked into using getId3() but it's got so many functions that finding those applicable to ...
0
votes
1answer
247 views

How do I read/write (program) the MBR/VBR of a flash drive?

I'm looking for a method of reading/writing (actually programming) the Master Boot Record (or maybe VBR) of a usb mass storage device. Actually its a flash drive whose MBR I want to program, so that ...
0
votes
1answer
153 views

Text file not writing and storing data properly

I am having some problems with creating and editing text files. The file never seems to store the data. I need to create a text file, if one is not available. If there is data in the file, read that ...
0
votes
0answers
138 views

Hbase and Mysql for Super large high Read/Write tables

I have two tables: One is an object property table which has all the common properties for all user objects. This table is a very high read table and semi-high write table. Second table is the english ...
0
votes
1answer
434 views

NSCFNumber unrecognized selector

i want to send data between views, but i get an error: unrecognized selector.... and the in the debugger, the variable mystring is a NSCFNumber ("at this time") instead of NSString... ...
0
votes
1answer
170 views

iPhone - reading and saving preferences

I've read the Apple doc about Preferences but this is still a little bit complex for me to understand. I have an application with a custom screen for setting the Preferences, and I'd like just the ...
0
votes
0answers
49 views

replaying a multiprocess linux application

I plan to implement a linux process replayer. Generally when application has only 1 process then replaying a process is not tough since we just have to provide same input and the program will behave ...
0
votes
1answer
537 views

Android Download Zip to SD card, zip not getting read

tried following code to download zip to sd card, i get NullpointerException. when tried some interrogations i come to know that the zip file is not getting downloaded actually. So would you please ...
0
votes
1answer
433 views

Read and Write data from/to BLOB in MS SQL using Visual C++ and OLE DB

ca you help me? I am looking for example how to insert and get data from BLOB in MS SQL Server 2008. I am using OLE DB and Visual C++. Thanks
0
votes
3answers
757 views

Bash read/write file descriptors — seek to start of file

I tried to use the read/write file descriptor in bash so that I could delete the file that the file descriptor referred to afterward, as such: F=$(mktemp) exec 3<> "$F" rm -f "$F" echo "Hello ...
0
votes
1answer
444 views

Reading/writing data to server, ftp, or website

I'm writing an app that will periodically send information out to a remote server, and then get relevant information about other users from that server back to the local database. What's the best way ...
-9
votes
4answers
238 views

Write data directly to RAM in Java, and then read it?

I known this probably goes against lots of general rules in programming, but how would you do this? There are two reasons why I am asking this: I want to attempt to have on app write data to RAM and ...