Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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 ...
20
votes
10answers
1k views

What is the correct way to write HTML using Javascript?

I see in some posts that people frown upon using document.write() in javascript when writing dynamic HTML. Why is this? and what is the correct way?
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.
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
656 views

how to Generate Pdf File in android?

Thanks in advance. I can generate PDF file in android application so PDF document is generated but image not included in PDF file. so please help and solve this problem.
10
votes
2answers
550 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 ...
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
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 ...
8
votes
2answers
813 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 faster? I expected ...
7
votes
2answers
351 views

Forcing closed an open file by C#

I found a similar question here but it was closed/accepted with an answer of "don't do that". I'm in a situation where I don't care what happens to the other applications, I want to take a file that ...
7
votes
4answers
6k views

stdout thread-safe in C on Linux?

Is writing to stdout using printf thread-safe on Linux? What about using the lower-level write command?
6
votes
3answers
91 views

Writing to executing process' image on Linux

What if process B writes (with a usual write() syscall) some data into the image of process A while the latter is executing ? Won't it cause corruption of what process A is executing ? I'm new to ...
6
votes
2answers
164 views

Writing multiple files slows down after x seconds

I have code which gets frames from a camera and then saves it to disk. The structure of the code is: multiple threads malloc and copy their frames into new memory, enqueue memory. Finally, another ...
6
votes
1answer
636 views

Using Inline Assembly in C/C++

Im trying to use inline assembly... I read this page http://www.codeproject.com/KB/cpp/edujini_inline_asm.aspx but i cant understand the parameters passing to my function. I'm writing a C write ...
6
votes
2answers
746 views

C# locking read while writing binary file

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 applications/processes to ...
5
votes
1answer
223 views

Write to a CD from Delphi [closed]

Possible Duplicate: How can I burn CD/DVD from delphi2007 win32 I am looking for a free and open source component or source code to write to a CD from Delphi 2007. Do you know any?
5
votes
3answers
191 views

It is possible to write less than 1 byte to a file

As far as I know the smallest unit in C is a byte. Where does this constraint comes from? CPU? For example, how can I write a nibble or a single bit to a file?
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
189 views

Re-writing a “better” code

I am using Ruby 1.9 and I would like to know if there is a "better" way to write the following code. array_one = [] array_two = [] some_array.each { |value| array_one << value.id ...
5
votes
3answers
8k views

Write a file on iOS

How do a wrtie a file on iOS? I'm tring to do it with the following code but i'm doing something wrong: char *saves = "abcd"; NSData *data = [[NSData alloc] initWithBytes:saves length:4]; NSArray ...
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
3answers
7k views

java.io.FileNotFoundException (Permission denied) When trying to write to the Android sdcard

I am trying to select an image file from the photo gallery and write to the sdcard. Below is the code that results in an exception. It appears to throw this exception when trying to create the ...
5
votes
7answers
612 views

How do I write unescaped XML outside of a CDATA

I am trying to write XML data using Stax where the content itself is HTML If I try xtw.writeStartElement("contents"); xtw.writeCharacters("<b>here</b>"); xtw.writeEndElement(); I get ...
5
votes
3answers
669 views

Vim: write back my file on each key press

I'd like vim to automatically write my file as often as possible. The ideal would be every keystroke. I need to save regularly so that my background build process will see it. It's a makefile for a ...
5
votes
8answers
736 views

What slows down growing database performance?

I'm creating a database, and prototyping and benchmarking first. I am using H2, an open-source, commercially free, embeddable, relational, java database. I am not currently indexing on any column. ...
4
votes
1answer
75 views

Python - a subprocess writing to stdin so that the main program can read it from the stdin

I have a python program which takes input from stdin. Now, I've to write another program and call it as a sub process so that every time I start this subprocess it should read data from another text ...
4
votes
3answers
169 views

Can people write a .php file to my chmod 777 folder

Is it possible for hackers ( or other ) to upload/write a php file to a folder on my site that has chmod 777? Example: I have a folder that has chmod 777. That folder contains images. I use ...
4
votes
3answers
161 views

How do I save and restore multiple variables in python?

I need to save about a dozen objects to a file and then restore them later. I've tried to use a for loop with pickle and shelve but it didn't work right. Edit. All of the objects that I was trying to ...
4
votes
1answer
48 views

python: How many write access needed to write XML

I am writing a python module that writes data into an XML file. The piece of code that handles the write is: from xml.dom.minidom import Document #using DOMXml main = Document() #create an XML ...
4
votes
2answers
640 views

Is accessing CPU cache (read and write) through C# possible?

I want to know if there are implemented stuff in C# which allows to access CPU cache. It is just interesting for me but I do not have something to do with the cpu cache at the moment. So I was ...
4
votes
4answers
187 views

.write not working in Python

I'm fairly new to Python so hopefully I'm just missing something obvious here, but it has me stumped. Snippet of my program below: outFile = open('P4Output.txt', 'w') outFile.write(output) print ...
4
votes
3answers
115 views

where to start programing a server application

Question: Where is a good starting point for learning to write server applications? Info: I'm looking in to writing a distributed computing system to harvest the idle cycles of the couple hundred ...
4
votes
1answer
208 views

Saving Source of Self (PHP)

Okay, so I have this strange problem. And ah, no solution. Can somebody please help me or send me off in the right direction? I have a simple HTML page, and I need to be able to have a 'Save' button ...
4
votes
2answers
404 views

Write to an existing file without overwriting what is in it (VB6)?

Hey, I'd like to write to a text file to record a set of scores. However, everytime I write to it it overwrites what was originally in the file. Please can someone tell me how to not let it overwrite ...
4
votes
5answers
454 views

Using write to print floating point numbers

The write function does not print a floating point number in the following code: #include <unistd.h> int main(){ float f = 4.5; write(1,&f,sizeof float); return 0; } This ...
4
votes
7answers
679 views

How to write to file in large php application(multiple questions)

What is the best way to write to files in a large php application. Lets say there are lots of writes needed per second. How is the best way to go about this. Could I just open the file and append the ...
4
votes
8answers
856 views

How to safely write to a file?

Imagine you have a library for working with some sort of XML file or configuration file. The library reads the whole file into memory and provides methods for editing the content. When you are done ...
4
votes
5answers
432 views

How to save double to file in python?

Let's say I need to save a matrix(each line corresponds one row) that could be loaded from fortran later. What method should I prefer? Is converting everything to string is the only one approach?
4
votes
3answers
223 views

What's the different between Console.Write(“H”) and Console.Write('H') in C#

What's the different between Console.Write("H") and Console.Write('H') in C#?
4
votes
2answers
466 views

Is there any good open-source software to write test cases?

I'd like to have historical memory of the test cases I usually do to verify a software suite, and the company in which I work now uses word or excel docs for this task, but I'd like something more ...
4
votes
6answers
8k views

Fast read/write from file in delphi

I am loading a file into a array in binary form this seems to take a while is there a better faster more efficent way to do this. i am using a similar method for writing back to the file. procedure ...
3
votes
1answer
45 views

Multithread Write into Text File

Hope you can help me with this one. I need to make a program that, using multiple threads, writes into a text file. What i need is to show how the processor gives "attention" to one thread or another, ...
3
votes
2answers
42 views

Run JAR file in PHP and write a file

I have the following problem in php when excecuting a jar file. I use the following command: exec("java -jar JavaProject4.jar"; The JavaProject4.jar creates a txt file in a path given in the java ...
3
votes
2answers
101 views

Java: How can I write HashMap <String, HashMap<Integer, ArrayList<Integer>>> to a file?

So i am able to write: HashMap<String, ArrayList<Integer>> ... but When it comes to a structure like HashMap<String, HashMap<Integer, ArrayList<Integer>>> ... I ...
3
votes
2answers
82 views

Writing and a file reading from the SD Card in Android

I am making an android application that will write a text file to the SD Card from a textview once a button is pressed and once an SMS message is received containing the same text. How do I save a ...
3
votes
2answers
86 views

Write a binary tree in hadoop FS

I need to write a binary tree to HDFS, which i will use to represent a desicion tree. But in order to do that i first need to create a BinaryTreeNode class, which will be the tree node. These are my ...
3
votes
1answer
95 views

D concurrent writing to buffer

Say you have a buffer of size N which must be set to definite values (say to zero, or something else). This value setting in the buffer is divided over M threads, each handling N / M elements of the ...
3
votes
3answers
108 views

How to write numbers as 4-bit elements to a file?

I want to save space when writing my data to file. That is I want to store my int numbers as half byte (4bits) only for each digit. I can't write numbers as characters as that will cost one byte for ...
3
votes
2answers
71 views

Review a newbie's pthread code

I a pthread newbie and I've been giving myself a challenge. I want to have a resource that multiple threads can access at the same time as read. However, if a thread wants to write, then this need to ...

1 2 3 4 5 16