Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

13
votes
9answers
16k views

How do I save a String to a text file using Java?

I am a beginner Java programmer attempting to make a simple text editor. I have the text from the text field in a String variable called "text". How can I save the contents of the "text" variable to ...
4
votes
7answers
71 views

Java text file size (before file is closed)

I am collecting full HTML from a service that provides access to a very large collection of blogs and news websites. I am checking the HTML as it comes (in real-time) to see if it contains some ...
3
votes
3answers
140 views

Which is faster for writing files C# (.NET) or PERL? [closed]

We have a lot of old legacy Perl scripts that connect to a MS SQL db process some records, and make files. Over time, the daily transaction size grew and these scripts are becoming more and more ...
2
votes
4answers
29 views

How to declare file handle as class property/variable for “writing” in Perl?

I want to do the same thing as open MYFILE, ">", "data.txt"; print MYFILE "Bob\n"; but instead in class variable like sub _init_tmp_db { my ($self) = @_; open $$self{tmp_db_fh}, ...
2
votes
5answers
135 views

Writing to a file in Java: Cannot find the path specified

I am having enormous difficulty writing to a simple text file in Java. Every search I've done for the IO exception I'm getting is turning up plenty of suggestions, but none of them apply to this ...
2
votes
6answers
138 views

Writing a “\n” in a text file

I'm trying to write a string \n in a text file. But the result in the text file is a newline. I know that the \n represents a newline. But in my case, i really need to see the String \n, not the ...
2
votes
4answers
168 views

Error in Writing to Image file from PHP

I am attempting to write to an image file from a blob. if($_POST['logoFilename'] != 'undefined'){ $logoFile = fopen($_POST['logoFilename'], 'w') or die ("Cannot create ".$_POST['logoFilename']); ...
2
votes
3answers
728 views

C++ ofstream cannot write to file

Hey I am trying to write some numbers to a file, but when I open the file it is empty. Can you help me out here? Thanks. /** main function **/ int main(){ /** variables **/ RandGen* ...
1
vote
1answer
21 views

How can I write data from then Android sensors to a document that I can access later?

So I'm creating a project on an Android Galaxy Tab 10.1 that uses its accelerometers and gyroscopes. One of the steps here is to collect alot of data and determine its accuracy and drift. To do this I ...
1
vote
3answers
55 views

Search and Replace a content in a file in JAVA

I have to edit the contents of a file and write the edited conted to another file.Here is the code iam using . import java.io.*; import java.util.*; public class TestRef { ...
1
vote
2answers
47 views

Android writing to file

I'm trying to write a file and upload it, however, the file does not seem to be written properly (as later on that I need to upload it, it crashes and says no file). I'm following the guidelines of ...
1
vote
1answer
41 views

append issue while triying to write data

I'm trying to write data to a csv file, through the below code. Html <html> <body> <form action="writeToExcel.php" method="post"> <center><h1>Personal Learning ...
1
vote
2answers
126 views

Ruby's speed of threads

I have the following code to thread-safe write into a file threads = [] @@lock_flag = 0 @@write_flag = 0 def add_to_file old_i = 0 File.open( "numbers.txt", "r" ) { |f| old_i = f.read.to_i } ...
1
vote
1answer
335 views

Is NSTemporaryDirectory() violate with Mac App Store Guidelines?

I have to submit an application to Mac App Store and got rejected from Apple by this reasons Apps that do not comply with the Mac OS X File System documentation will be rejected In guidelines ...
1
vote
0answers
108 views

Android - problem with file-writing

I have some problems when writing an xml file onto my android device (GalaxyTab 10.1V). The code for writing the xml works fine. I can see the written file at the DDMS perspective in Eclipse and can ...
1
vote
5answers
97 views

PHP, Line break when writting to a file

I am trying to keep a running total of all the responses to a form I have written, but I am having trouble making it so that each response takes a new line. I have my code down below. I just want it ...
1
vote
2answers
453 views

need help regarding a packet capture program

The following is a program that captures TCP packets < port 80 > and prints header related information in the console for every packet. I have also included a timer , so that after every 1000 ...
1
vote
3answers
1k views

Using PHP to store results of a post request

Im currently working with an API which requires we send our collection details in xml to their server using a post request. Nothing major there but its not working, so I want to output the sent xml ...
0
votes
2answers
50 views

c# saving settings while reading settings

I have a method which save settings to file. This method is called if value of dateTimePicker changed. But I have in Form_Load loading settings -> I read value from file and assign it with ...
0
votes
2answers
37 views

an error 3013 thrown when writing a file Adobe AIR

I'm trying to write/create a JSON file from a AIR app, I'm trying not so show a 'Save as' dialogue box. Here's the code I'm using: var fileDetails:Object = CreativeMakerJSX.getFileDetails(); var ...
0
votes
2answers
89 views

When NSDictionary is added to array, it replaces the previous dictionary

UPDATE: Figured out some stuff and changed code. When I add my NSDictionary to my array it suddenly replaces the previous dictionary I added last time. I don't know why this is happening. I am using ...
0
votes
2answers
115 views

Using renderBinary() to generate downloadable files

I'm trying to create a feature in my program that allows users to download their data into a file. Right now, I have a method in one of my controllers that creates a File object with a certain name ...
0
votes
2answers
147 views

Writing String to an rtf in java doesn't keep structure

I wrote a FileMerge class where I take an rtf and replace certain tags with SQL data. Everything is ok but one part in which I replace one tag with one or more lines, it replaces the file but \n or ...
0
votes
6answers
142 views

Writing a comma separated string line by line to a file

This cide is meant to take the text from a rich text box (that is a list of users separated by commas) and then write each entry on its own line. However, it does not. What have I done wrong? if ...
0
votes
1answer
24 views

Read list of files, and rewrite to master list

I have a directory which has say 10 .txt files. Open the directory using: $dir_handle = @opendir($path) or die("Unable to open $path"); I need to be able to read the files names of the text ...
0
votes
1answer
186 views

check if user-entered filename/path is valid [closed]

Possible Duplicate: Is there a way in Java to determine if a path is valid without attempting to create a file? I'm trying to let the user enter the path where he wants something to be ...
0
votes
2answers
238 views

PHP Data-URI to file

I have a data URI I am getting from javascript and trying to save via php. I use the following code which gives a apparently corrupt image file: $data = $_POST['logoImage']; $uri = ...
0
votes
2answers
229 views

Excel file writing using xlwt+Google app engine - Getting IOError: invalid mode: wb

In my application i'm trying to write the data to excel file using xlwt API. When i run the GAE app, i got following error . Please help me to fix this bug. Traceback (most recent call last): File ...
0
votes
1answer
37 views

How to make a batch create and write on a text file

I am trying to make a program with batch that will allow me to add and see customers for a business I work for. I have all the input stuff correct, but I can't get the program to write all the info to ...
0
votes
5answers
199 views

Writing Console Output to File in Java

So I was wondering if it was possible to write all the console output to a separate file outside of Java? I know about the Printwriter and Filewriter method. However, in my experience those would work ...
0
votes
2answers
97 views

.plist writing error on device

This snippet of code does work on the iPhone simulator but not on device, although I am looking for a file that has been written on disk in the documents directory NSString *documentsDirectory = ...
0
votes
1answer
81 views

Android application cant write to file at second time

I have problem with writing data to file in Android Emulator. In my Android Emulator in /data folder I have created MyLogs folder and give full access to it. After I run my application and it create ...
0
votes
2answers
100 views

Image file writing: safe way to lock a file

I have a website where people submit content that is then inserted into a collective image. My code works, but I found one issue so far: If 2 people try to write at the same time (both let's say, ...
0
votes
1answer
993 views

Receiving TypeError while trying to write to file in Python

When I run this code: tickers = re.findall(r'Process Name : (\w+)', s) file = open("C:\Documents and Settings\jppavan\My Documents\My Dropbox\Python ...
0
votes
1answer
245 views

iphone - Problem in writing NSDictionary to file

I'm receiving json file from web server. I'm using JSON files to parse (into arrays and dictionaries) and use the received information. But at point of time, i'm trying to save a dictionary and its ...
0
votes
2answers
310 views

How to save Large Data to file

I have list of maybe 50,000 entries that are populated in datagrid in wpf. Now I want to save the data in the list to a file that may be text, or prefereably csv. As list is too big. There is a ...
0
votes
1answer
913 views

Base64 encoded string to file(Ruby on Rails)

I have a requirement where a zip file is sent to the ROR application after encoding it with Base64 encoding. I should decode it, save it as a zipfile and unzip it and do some operations. They are ...
0
votes
1answer
48 views

How to write to a shared folder on an Unix machine from code inside an ASMX service?

One of our team is working on an ASMX service. The service use to write some files on the same machine. We used to provide rights to the ASPNET user on the target folder. Now, the policy has changed ...
0
votes
1answer
287 views

Objective C write to Remote URL

Ok, so I have the correct username / pass for a remote host, and I have a NSURL Object referring to the file on the server. How can I possibly write data to that server via Objective-C? I cannot find ...
0
votes
1answer
72 views

Write DB information to a file - good appraoch?

I have a DB and a mapping framework which was written by the company Im working for. So I have a class for each table in the DB and those classes allow to call the DB and get various information in ...
0
votes
1answer
307 views

Java - writeLong method of DataOutputStream and writing hex

Currently, I have: outByte.writeInt(0x49492a00); outByte.writeInt(0x08000000); But i want to be able to write all of that on the same line. But: outByte.writeLong(0x49492a0008000000) is ...