The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
2answers
23 views

Weird FileWriter error

I have written to files before and never come across this problem, i am utterly confused. EDIT: Sorry the error is that no lines are being written to the .txt file. System.out.println(upto); ...
2
votes
0answers
34 views

Writer abstract class: why write(int c) writes a single character but locates 1024 locations?

Abstract class Writer we have this abstract method that writes a portion of an array of characters. abstract public void write(char cbuf[], int off, int len) throws IOException; Also look at this ...
1
vote
1answer
136 views

Updating database with Ext Store Writer - ExtJS 4.2

I had modified the sencha's writers example, but i couldn't make to update my data in my database. I have a php script that do that at server's side, but I can not see the update call by extjs. I am ...
0
votes
0answers
69 views

sencha architect how to override json writer proxy

How do I override the json writer proxy to use in my model? I can't see how to do this. I need to do this so that I can pass structured json data with associations back to the server.
1
vote
1answer
53 views

add static pdf to current generated on the fly pdf, using itext

I have a problem adding already existed pdf into current pdf I just generated. I saw PdfCopy but my situation is a little different. I have a pdf on the fly which is generated right now and before ...
1
vote
1answer
211 views

Spring Batch: Writing data to multiple files with dynamic File Name

I have a requirement to get the data from a database and write that data to files based on the filename given in the database. This is how data is defined in the database: Columns --> FILE_NAME, ...
-1
votes
2answers
72 views

Buffered Writer Java Limit / Issues

I have a buffered writer that is writing to a text file. For some reason the writer stops writing a long string about half way through. Are there any known issues with using the buffered Writer in ...
-4
votes
1answer
64 views

optimizing a file making program [closed]

I currently have a working program that creates a file of any desired size by populating it with zeroes. This is great but the size of the files I need to do this for are Gigabytes, and this method ...
1
vote
2answers
146 views

Csv Writer - Trying to write variable in each Column

iam trying to write some data in a csv file but i cant select different columns.. car=["car 11"] finish=["Landhaus , Nord"] time=["['05:36']", "['06:06']", "['06:36']", "['07:06']", "['07:36']", ...
1
vote
2answers
62 views

Java application to write CSS from local package

I am trying to programmatically build html pages that uses the same css. In order to do that I am creating necessary directories and a the css file. As the picture below shows I have the css file in ...
3
votes
1answer
49 views

java - when debugging, if i have some writer, how can i get the file name+path it is writing to?

When debugging, i'd like to, having come across a Writer, be able to tell where it is writing to. A cursory inspection of the object yields little to work with on the file name/file path front. Is ...
12
votes
1answer
292 views

What is the point of having a lazy/strict version of Writer?

Why are there two different Writer-type monads in Haskell? Intuitively to me, reading "strict writer monad" means that the <> is strict, so that there's no thunk buildup in the log. However, ...
-1
votes
1answer
45 views

Why my program writes file over and over instead of adding data? [closed]

Why my program writes file over and over instead of adding data? I want to write in file but it always delete previous and write new... BufferedWriter writer = null; try { writer = new ...
0
votes
1answer
47 views

Is there a way to just close all closables in Lucene?

When indexing, often lucene leaked unclosed reader, writers, etc. (e.g. Lucene Index not closing all files while writer.close() get called) Is there a way to just close all closable in Lucene at the ...
0
votes
3answers
161 views

REST could not find writer or datasourceprovider for type application/json

I'm creating a REST service which accepts input as PathParam and produces JSON Response. The code is working fine and I can able to build the response. After returning the response, REST is throwing ...
0
votes
1answer
104 views

csv.writer in Autodesk CSV

29 csvfile=desfile+"\spv1.csv" 30 csv_writer = csv.writer(csvfile) I am using AutodDesk CFD with Python, this is the section where I am trying to write the results to a csv file. The variable ...
0
votes
2answers
514 views

Libre Office Writer: Strike-out on delete rather than remove?

We occasionally see revision-suggestions for documents (usually from our attorneys) where removed content gets color coded and has a strike through it. Added content also gets its own color coding. I ...
0
votes
1answer
90 views

Custom jena-json writer

I'm creating a web apllication and i want to load a json file to a visualization library. the thing is the json file needs to be in a certain format. I'm using jena to get data in a json file that is ...
0
votes
1answer
95 views

JpCapWriter crashes JVM

When I try to use JpCap Writer to save packets to a file, it causes JVM to crash. Code: captor=JpcapCaptor.openDevice(interfaceList[interfaceNumber], 65535, true, 20); captor.setFilter("ip and ...
0
votes
0answers
267 views

spreadsheet_excel_writer setColumn

I am having trouble getting the columns to change width using spreadsheet_excel_writer. I want the first column to be longer than the rest, however they are all the same when it outputs.... ...
0
votes
1answer
117 views

Write a value to an indiviual CSV file index in Python

I've been messing around with reading csv files lately and now I want to rewrite a single value to a row from an integer defined in python. Heres my reading code; n=random.randint(0, 20) cr = ...
0
votes
0answers
144 views

url.openStream() to Writer

What is the correct way to write from an OutputStream (url.openStream()) to a Writer (it can be a FileWriter or a Stringwriter) without loosing encoding/charset?? public static String ...
0
votes
2answers
848 views

BufferedWriter not writing to .txt file even after flushing the writer

Here's the code I used, I get no errors or warnings but the file is empty, I created the aq.txt file and placed it in the workspace and it also shows in the project. I'm sure it's something stupid I'm ...
3
votes
2answers
71 views

The text file that I am saving in Java is coming out wrong

I am creating a program that saves the first X prime numbers but when I save the ArrayList to a text file the list is completely wrong. Here is my code: import java.util.Scanner; public class Class1 ...
0
votes
2answers
1k views

Write multiple lines with quotes in a text file vb.net

Hi Is there any easier way to write multiple lines in a file which has things like quotes in and other things like that or is the only way to do it like this Dim objwriter As New ...
4
votes
2answers
224 views

C# binary writer customization

Is there a way to customize the way a binary writer writes out to files so that I could read the file from a C++ program? Eg: myBinaryWriter.Write(myInt); myBinaryWriter.Write(myBool); And in C++: ...
0
votes
2answers
456 views

Writing csv files in python (Files are left blank at the end of the operation)

I am writing to csv in python, and I was wondering why my output files are blank when the program completes running. First off, here is my code: reader = csv.reader(open(location, 'rU'), delimiter = ...
0
votes
0answers
412 views

Sencha ExtJS writer example not working when referencing files from different directory

Below is the path for the ExtJS writer example. It works fine when you run the writer.html file in a browser. But when you reference the same header file references inside an aspx page from a ...
1
vote
4answers
217 views

File Writer Java ; how to overwrite

i'm making an Highscore implementation for my game. Here there's what i want to do: I have object Score which contains String Name and Integer score. Now : if Name isn't already in the file, add it ...
1
vote
1answer
114 views

C++ Making a code writer

Firstly my experience with c++ is limited! I am working on a level editor for a game engine and I was wondering if I could have some sort of system were things were done in the level editor and the ...
0
votes
3answers
517 views

File Writer with String (java)

i can't have newline in my text file with this code, what it's wrong with that? try{ oprint=new FileWriter("HighScores.txt",true); } catch (IOException e1) { System.out.println("error"); } ...
0
votes
3answers
133 views

Is there a tool to help me write PHP Documentation?

My goal is to document a hundred classes that are only partially and then not very well commented. I know that documentation should be written on the fly but this was not the case for my project. So ...
0
votes
5answers
852 views

Adding The Date and Time to the File name

Hello I am trying to add the date and time to a file name in JAVA. I can get the date and time printed within the file, which I also want done, but when I place the toString in the FileWriter I get a ...
0
votes
1answer
97 views

Java writer first character (int) in output wrong

I am trying to write an writer in Java which takes integer values out of an ArrayList for the first row and column and a float[][] for the rest and formats it into a CSV. Doing this my first column ...
0
votes
2answers
78 views

Java file reader isnt working, it wont run the bit of code

I have this program that needs to read diffrent files for diffrent selected items in a JComboBox. I have gotten the JComboBox and everything to work but now when i try to call the Course_loader code ...
2
votes
1answer
130 views

Is a separate “writer” thread always needed (in a socket reader/file writer client)?

I have some client code that reads from a socket (via an input stream) and writes to a file (via a BufferedWriter) in a loop: dataInStream = new BufferedInputStream(dataSocket.getInputStream()); ...
1
vote
1answer
245 views

how to export .req file by using PEMWriter?

I've a request data but I don't know how to export this request data by using PEMWriter. My request data : -----BEGIN NEW CERTIFICATE REQUEST----- ...
2
votes
2answers
88 views

Perl Moose exception when invoking a reference to an attribute's writer method

I am trying to pass a reference to an attribute's writer method to another class method. The setter method is apparently invoked since the print statement is executed. However, the following error ...
0
votes
3answers
417 views

VB.NET Writing to a certain file (essentially creating a new XML element)

Hi I'm making my own ToDo program, and I need to add the ability for the user to create a ToDo item. When they do this, I need to be able to add in an XML element/section in a list file. My XML file ...
2
votes
4answers
964 views

Write one single bit to binary file using BinaryWriter

I want to write one single bit to a binary file. using (FileStream fileStream = new FileStream(@"myfile.bin", FileMode.Create)) using (BinaryWriter binaryWriter = new BinaryWriter(fileStream)) { ...
0
votes
4answers
2k views

Writing key:value pairs to a tab-delimited file with variable #s of values

Beginner question: I have a dictionary where the values are lists of (a variable # of) strings. Ultimately, I would like to write each dictionary entry to a single tab-delimited line with the key as ...
0
votes
1answer
196 views

What should format use to export .key and .req file?

I exported .key and .req file by my java application. Code: BufferedOutputStream bos1 = new BufferedOutputStream( new FileOutputStream(txtRequest.getText())); ...
0
votes
1answer
572 views

Send File To Microsoft Xps Document Writer

Please Read This Article . http://support.microsoft.com/kb/322091 this Article Send File & String To Printer With Binary Format. But One Problem . Can Not Create File XPS Or Save XPS File From ...
9
votes
1answer
192 views

Does Writer Monad guarantee right associative concatenation?

It was claimed in Validations in Haskell that use of a Writer guarantees right-associative concatenation. However, this example seems to show otherwise. What's the correct answer? {-# LANGUAGE ...
0
votes
2answers
366 views

C# How to delete the first line of my text files?

I want to create a Windows Forms app in Visual Studio that writes text files on a button click. I have a txt file (e.g. test.txt) which contains AAAA BBBB CCCC DDDD EOS FFFF GGGG HHHH IIII EOS JJJJ ...
1
vote
2answers
477 views

Can't write file on SD-card (Is a directory)

I'm getting the following error when trying to write midi-file on the Android SD-Card: 12-14 16:22:22.219: ERROR/Thread writer(1108): java.io.FileNotFoundException: ...
1
vote
1answer
478 views

Buffered Writer loads corrupt data when new file created

Basically, I'm trying to capture the accelerometer data into a txt file. The code writes the accel data into a string, and then updates everytime it changes which is often. I included a toggle button ...
2
votes
3answers
163 views

writing to file: the difference between stream and writer

Hi I have a bit of confusion about the stream to use to write in a text file I had seen some example: one use the PrintWriter stream PrintWriter out = new PrintWriter(new BufferedWriter(new ...
1
vote
1answer
1k views

Writing a Python list into a single CSV column

I have a list of numbers that I want to put in a single column in a .csv file. The code below writes the values across a single row. How can I change the code so that Python writes the each value on a ...
0
votes
2answers
110 views

Stream writer on char[] does not work

I have the following code, but the char[] cc does not seem to get written when I checked the output file. Can someone tell me what's wrong? import java.io.*; class Test { public static void ...

1 2