The tag has no wiki summary.

learn more… | top users | synonyms

-1
votes
0answers
29 views

Writing attributes to a single file from different forms without overwriting

I have been trying to write few attributes which are in different forms to a single file.the code will work in a single click.But its working differently then expected. The file only shows the ...
1
vote
1answer
51 views

how to write to a text file without overwriting?

I am in a deadlock as to how to write the attributes in a form to a text file in java. I know there are many answers to this but i couldn't find any solution to the problem that i am facing. While ...
1
vote
4answers
37 views

Is it necessary to close a FileWriter, provided it is written through a BufferedWriter?

Consider a BufferedReader as below: writer = new BufferedWriter(new FileWriter(new File("File.txt"), true)); In this case at the end of the application, I am closing the writer with writer.close() ...
1
vote
1answer
37 views

Scanner only reading 1st token of a string

New to the Java Language, The following is my bit of code. However the whole string isn't written to the file. Only the First token is written to the file. Any Explanations ? import ...
0
votes
0answers
12 views

Adding onto a file with java AWT FileDialog and FileWriter

I am having a problem with my code. I am using AWT FileDialog, and creating files work just fine. In my program, I have the option to add text to an existing file, but currently it does not add text ...
-1
votes
2answers
19 views

FileWriter removing the Java.awt.Point

I am creating a program that will outprint the coordinates of a location. When it prints it out to the file, it looks like this: Car id distance #spots java.awt.Point[x=1,y=1] ...
0
votes
1answer
44 views

Phonegap javascript File saving

I am trying to save a simple text "Hello", into a file using the phonegap filewriter API. I checked the online docs together with some books(20 recipes for phonegap), however it is still giving me an ...
0
votes
1answer
34 views

Write fluctuate coordinates to file

From a mouse I have a command that looks like this: movej([100, 200, 300, 1, 2, 1])= [X, Y, Z, RX, TX, RX]. The X Y and Z are varaibles and are not the same. They come out with 100 movej commands ...
0
votes
1answer
21 views

FileWriter false overwrites file from string A to Z BUT leaves only string Z; how do I keep string A-Z?

So I have the following code within my program. What I'm trying to do is print the variables I have declared in main of program to a csv file. I want to replace what is already in the csv file (the ...
1
vote
4answers
57 views

Copying the Contents of One text file to Another in Java

I am trying to copy the contents of one text file ("1.txt") which contains 2-3 integer numbers (ex: 1 2 3) to another text file ("2.txt") but I am getting the following error upon compilation import ...
0
votes
2answers
87 views

How can I read and write objects from an arraylist?

I´m creating an arraylist in my UserArchive class and add User-objects from my User class: public class UserArchive implements Serializable { ArrayList<User> list = new ArrayList<User>(); ...
0
votes
1answer
65 views

JavaScript: Writing an output file within a limited & secure scenario

I would like to add a function in my javascript to write to a text file in the local directory where the javascript file is located. This means I'm not looking for some insecure way of accessing the ...
0
votes
2answers
53 views

remove row based on value in python

I have some code that is reading in a csv file. The code then adds values in based on user input. The problem that I am having is removing entries that contain an invalid value. The particular invalid ...
0
votes
1answer
80 views

Example for file read/write with NSFileHandle

Are there good examples for doing file read/write in chunks with objective c? I am new to objective-c and iPhone API, here is the sample code that I wrote. Are there better ways to do it? -(void) ...
0
votes
3answers
37 views

PrintWriter vs FileWriter in the following context [duplicate]

What if in the next bit of code I am going to substitute (new FileWriter with (new PrintWriter pw = new PrintWriter(new BufferedWriter(new FileWriter ("xanaduindeed.txt"))); pw = new ...
0
votes
1answer
84 views

If file does not exist, create it and write string to it. If it does then append string to it. Isn't working right

Okay, I read a lot and thought I had this worked out but apparently not. What I'm trying to do is check to see if a file exists (in this case heapFile.csv) and if it doesn't to create it and then ...
0
votes
0answers
51 views

Filewriter prints twice in a file

public listaRegistros almacenesAceptados(listaRegistros lr) { int i, j, l; registro r = new registro(); listaRegistros aAceptados = new listaRegistros(); totales = lr.getSize(); ...
0
votes
2answers
101 views

FileWriter doesn't write to file even after .flush()/.close()

I am trying to write to a text file but even though the method creates the file if it does not exist, it does not write. I have been through several other posts with a similar issue and followed the ...
4
votes
6answers
143 views

FileWrite BufferedWriter and PrintWriter combined

Ok so I am learning about I/O, and I found the following code in one of the slides. can someone please explain why there is a need to have a FileWrite, BufferedWriter and PrintWriter? I know ...
-5
votes
2answers
108 views

C# asp.net threading timer file writer not working [closed]

I'm trying to have a function that runs every minute on the server and updates a txt file.. My code in Global.asax is something like this: Timer t = new Timer(UpdateFile); t.Change(0, 1000 * ...
-1
votes
2answers
56 views

cannot write in the file [closed]

good day guys, im creating a program that will write the data to a text file. the data is coming from an array list, it is a data that is solved from the array list e.g : public double ...
1
vote
3answers
100 views

FileNotFoundException solution?

Creating a program that will write the data from the array list to text file and I'm experiencing this FileNotFoundException even though the file exists. At the same time the computed data from my ...
0
votes
1answer
107 views

Append Byte Array at the End of an File

I would like to append an Byte Array to an existing File. It must be at the end of the File. I could already manage to write at the start of the file. (Thanks to stackoverflow ;)). Code for that: ...
0
votes
3answers
64 views

A substite for “for looping” in text files

from unidecode import * reader = open("a.txt",'w') def unite(): for line in reader: line = unidecode(line) print (line) unite() Now, I get an error saying for looping is not ...
1
vote
3answers
220 views

trying to add line(array of string) between specific lines in text file by java program?

I am trying to write program by seeing from various forums. Programs as bellow, aiming to add line after 3rd line of existing txt file, but before 5th line. & i trying to keeping previous lines ...
-1
votes
1answer
22 views

Using two FileWriters where one appends and the other doesn't

I am using two FileWriters after each other. The first one does not append BufferedWriter versionWriter = new BufferedWriter(new FileWriter(new File(filePath))); versionWriter.write(s); ...
0
votes
0answers
41 views

DI Studio, can I remove quotes in file created by File Writer

I wanna create a file based on data in a SAS table, using the File Writer transform in DI Studio. The generated code contains logic to enclose every variable in "-characters (qoutes). This is not ...
1
vote
3answers
178 views

How to use getAssets().open(filename) with FileWriter?

This is the code I tried: FileWriter outFile = new FileWriter(getAssets().open("USCOUNTIES"),append); But it gives this error while compiling: "The method getAssets() is undefined for the type ...
1
vote
1answer
45 views

Java: Error with calling the WriteUTF method

I'm having problems with writing a 2d, user-inputted array to a text file. My code thus far (in the Saving method, at least) is: `public static void Save(String[][] EntryList) { try { ...
0
votes
3answers
75 views

Writing and copying Text files

I have an assignment to :write a program that reads a file and writes a copy of the file to another file with line numbers inserted. I am not sure what to do at the end of the code at the "for(int i ...
1
vote
3answers
325 views

Writing from hashmap to a txt file

I have a hashMap of Integer,String (K,V) and want to write only the string values to a file (not the key Integer) and I want to write only some 1st n entries (no specific order) to the file and not ...
0
votes
2answers
285 views

Write file to getFilesDir() fails - NoSuchElementException

here is what I am doing : 1- Getting a file from my assests and put it into a String - SUCCESSFUL 2- Make A file in getFilesDir() - FAILS (No crash yet) 3- Write the string I got to this file using ...
-5
votes
1answer
129 views

Writing a file using for loop. But I am not able to do it [closed]

I have to write some data to files. I tried to write data to files using loops. But When I used this code it writes just one line per file. help me with this code Vector[] v = ...
1
vote
0answers
77 views

Read russian symbols from file in Java and output to console

I'm writing a small Java appliction. It just reads a text file and outputs its contnent to console. I do it using FileWriter, method readLine(). The file contains text in Russian. When I see console ...
0
votes
0answers
127 views

get the absolute path to file saved with html5 FILE API

I am using HTML5 file API to save blob data to binary file. Code fragment below function onFsInit(fs){ fs.root.getFile('logius.mp3', {create: true}, function(fileEntry) { ...
0
votes
1answer
108 views

I need to know how to avoid the System.Data.DataRowview in vb 2010

I have an issue with my code; and would appreciate some assistance getting her to do what I want without an annoying error. Read the databound listbox strings, find the user selected string and write ...
-2
votes
3answers
60 views

How to get output like this in java using forloop to a text file?

I must get output like this in java digraph G { main -> parse -> execute; main -> init; main -> cleanup; execute -> make_string; execute -> printf ...
0
votes
4answers
185 views

Java - write multiline string to file

I have a string with multilines in it as shown below <?xml version="1.0" encoding="UTF-8"?> <books> <book publishyear="1990"> <name>Harry Potter</name> ...
-2
votes
1answer
136 views

Java FileReader and Writing [closed]

Im struggling to get my head around saving an array to a file and then reading it back in to the same array that it was saved from. the code for Person is import java.io.*; public class ...
0
votes
2answers
36 views

Android filewriter is null

My app can collect some data and I just want to output these data to a txt file in SD card. For some reason, the following code works on the Galaxy but not on the Nexus. I guess there is some thing ...
0
votes
3answers
60 views

Java program end randomly with no error given [closed]

My program, which uses a BufferedWriter wrapped round a FileWriter keeps ending in a certain place every time I run it. I cannot for the life of me figure out why. Below is my code. I have pondered a ...
0
votes
0answers
112 views

Writing a String from Java to Excel using fileWriter

I am trying to write a string to excel from a java api. However when i try and write to the excel Sheet one of my fields get messed up and i am unsure as to the cause. My String is made up of ...
1
vote
1answer
852 views

export sqlite into csv

im trying to take data from my sqlite database and write it into csv file and email the information when done writing.i only have one Table with 3 columns in the database.i have DBAdapter and a class ...
1
vote
5answers
98 views

Writing to a file in Java. Help me code

I am passing a file path to this method which writes the in txt file. But when I run this program it is not writing full and I don't know where I made mistake. public void content(String s) { try { ...
0
votes
3answers
668 views

Write file using BufferedWriter in java

I am doing a lab where we have to read in an external file, take some statistics on the data, and then create and write a new file with the stats. Everything in my program works except for writing the ...
1
vote
1answer
720 views

How to write contents of an array list to a text file?

I have this basic enough Java program that asks the user to input songs to a music library array list. From there the user can shuffle their songs, delete a song, delete all etc. It's nearly finished, ...
0
votes
2answers
196 views

Reading & writing Files - Java empty spaces

I want to read from a file and write to a file. The input file is as follows <ORLANDO> <0%> As I remember, Adam, it was upon this fashion bequeathed me by will but poor a thousand ...
0
votes
1answer
283 views

Can't get Phonegaps FileWriter to work

New to Phonegap and having a hard time understanding the FileWriter function. I am trying to get this example to work on iOS6 but I'm stuck with the error message <script ...
11
votes
1answer
589 views

Which ArrayBufferView

I'm retrieving an ArrayBuffer over XHR and want to save it to the FileSystem API using a FileWriter. The FileWriter expects a Blob and the Blob constructor won't take an ArrayBuffer, it takes an ...
3
votes
4answers
157 views

FileWriter writing extra nulls at end of file

For large strings (60MB or so long), FileWriter is appending extra nulls to the end of my files. For small strings this code works as expected. For clarity, dat and filePath are Strings. FileWriter ...

1 2 3 4 5