Tagged Questions
0
votes
2answers
27 views
Multiple files argument to main function
I want to process multiple text files ( eg. compare 2 files) and pass the files as argument to the main function. How do I do that ? How to I pass multiple files arguments from the command line?
...
-4
votes
0answers
35 views
Offline login system [closed]
Ok, I am making 2d java game and I am writing a login system with accounts for it.
The problem is because the game will need to be bought before played what if the user temporarily cant connect to ...
3
votes
3answers
66 views
Python version of freopen()
Is there anything in python that can replicate the functionality of freopen() in C or C++? To be precise, I want to replicate the functionality of:
freopen("input.txt","r",stdin);
and
...
1
vote
2answers
54 views
Deleting certain data from a file
I have a file stored in my system and I want to delete certain data from it.
I accomplish this by making a temporary file, then write all of the original file data to it, but without the data I don't ...
1
vote
2answers
68 views
Python list comprehension, can it be used for reading multiple files?
Here is my script so far:
#!/usr/bin/env python
import fileinput
from optparse import OptionParser
op = OptionParser()
(options, files) = op.parse_args()
print options
print files
content = []
for ...
0
votes
1answer
35 views
Split string from file
I have a file in which the name of a book and its author is on each line. (EX: "Douglas Adams,The Hitchhiker's Guide To The Galaxy" is one line of the file). I can read each line into a temporary ...
1
vote
2answers
34 views
PHP create random tmp file and get it's full path
This is what I want to do.
$temp = tmpfile();
fwrite($temp, "writing to tempfile");
$path = full_path($temp);
full_path is not a real function. What do I need to do to get that information?
0
votes
2answers
105 views
How to write on a specific line in a file?
I want to write some data on an already existing file. It is a file that contains about 8-10 lines of header(# comments) and then thousands of lines of data values. What i want is to keep the header ...
0
votes
1answer
109 views
Reading text file line by line into parallel arrays C++
Having trouble reading information from a text file to parallel arrays. The info is arranged as such in the file:
Name
Street Address
City, State, Zip
Order size
Name
Street Address
City, State, Zip
...
2
votes
3answers
69 views
list all subfolders in a directory and written on to a text file
I need to list all subfolders in a directory and written on to text file.But when i coded only the last subfolder is only written on to the file.Please help.I am a beginner to Java.
public class Main ...
0
votes
1answer
69 views
Skipping line from .TXT file [duplicate]
Hello i have a little problem with my project. I want to scan the text from .TXT file into my struct except from the 1st line in my text file. I tried to do this with fgets() function but it only ...
-1
votes
2answers
64 views
how to update the contain in .txt file java [closed]
for example i have the file named file.txt which contain personal information (id,name, salary):
A123 Anna 3000
A234 Alex 4000
A986 Jame 5000
How can I write a java code that allow user to enter an ...
0
votes
2answers
74 views
How to add multiple lines in text file
I am trying to write a program which can display the contents of the file then append the content dynamically by user to a text file in C.
Below is the code, but somehow it is working for single line ...
0
votes
2answers
49 views
How to write file if parent folder dosen't exists?
I need to write file to the following path:
fs.writeFile('/folder1/folder2/file.txt', 'content', function () {
});
But '/folder1/folder2' path may not exists. So I get the following error:
...
0
votes
2answers
49 views
Java file IO truncated while reading large files using BufferedInputStream
I have a function in which I am only given a BufferedInputStream and no other information about the file to be read. I unfortunately cannot alter the method definition as it is called by code I don't ...
0
votes
2answers
59 views
Cannot save object to dat file
I have a project due in CS where I'm suppose to create a GUI program that will act as an address book. The program has add,find, and delete contacts. The program is also suppose to be able to ...
0
votes
2answers
64 views
update textfile delimiter java [closed]
I am just starting to learn java and I found an example on how to update a textfile but I need some guidance on how I can manipulate it to update elements in my textfile with delimiters. for example ...
1
vote
1answer
32 views
What happens with seek pointer?
I'm currently programming my own implementation of fseek function and I want to ask on what happens in several causes. Here they are:
If seek origin is set to SEEK_SET or SEEK_CUR and result of next ...
-1
votes
2answers
49 views
Editing existing file in Android
I am trying to edit existing file on the device by-First- select the file using selector that retrieve the path of the file like this "mnt/sdcard/file.png". Then I pass it to reader to read the ...
1
vote
1answer
29 views
Unknown Master List .dat file, issues retrieving information
I come to you completely stumped. I do some side work for a company that uses an old DOS based program to input and retrieve data. This is a legacy piece of software, and they have since moved to ...
0
votes
2answers
21 views
CSV read issue between Mac and Win - missing \n char
I have a basic csv file reading, but it can't read the csv saved on a Mac platform.
I understood that the issue is from Different operating system families have different line-ending conventions, but ...
0
votes
3answers
64 views
Android; Check if file exists without creating a new one
I want to check if file exists in my package folder, but I don't want to create a new one.
File file = new File(filePath);
if(file.exists())
return true;
Does this code check without creating ...
0
votes
2answers
58 views
Repeatedly fread() 16 bits from binary file
I'm reading a binary file. The first 16 bits represent an array index, the next 16 represent the number of 16-bit items about to be listed, and then the remaining multiples of 16 represent all those ...
1
vote
2answers
75 views
How do I (re)write bytes in the middle of a file?
I have a case where there are a block of bytes in the middle of a file that need to be shuffled. Currently the implementation reads the file, shuffles the bytes in memory, then outputs the whole file. ...
0
votes
3answers
34 views
Error while trying to read file in jar
I am trying to read an xsd file to validate schema.
My schema is in location x/y/z/test.xsd
My class reading this file is also in x/y/z/ReadSchema.java
Both there are packaged in my jar.
I am ...
-1
votes
2answers
44 views
Files in C, how to do input
This is my output function
void output(int n){
FILE *fp;
fp = fopen("sqrt.txt", "w");
for(int i = 1; i < n; ++i){
fprintf(fp, "%.2f\n", sqrt(i));
}
fclose(fp);
}
I'm ...
2
votes
1answer
151 views
Python file not closing
I wrote a program to do some processing to a little bit big amount of data. Three steps are involved there:
Read data
Do Processing
Write Data to a file.
While running the code first two steps ...
0
votes
0answers
55 views
Reading video data and writing to another file java
I am reading a video file data in bytes and sending to another file but the received video file is not playing properly and is chattered.
Can anyone explain me why this is happening and a solution is ...
-4
votes
1answer
66 views
How to check if file is corrupt or not in C++ [closed]
I have done code to scan the folder and detect normal file and directory in that folder.Now i want to check if normal file is corrupt or not.How to proceed i don't know please give me ...
0
votes
2answers
62 views
Creating new folders and files with Lua
I'm writing a Lua 5.1 script for personal use, designed to be run as a stand-alone program through the Lua interpreter. I need to include a function that will create a new subfolder (where ...
0
votes
1answer
23 views
DirectoryWalker filter folder having xml file in them
I am using the DirectoryWalker and I want to create a filter that will list all the directories that contain xml files. I do not want to list the file themselves but only their direct parent? If a ...
0
votes
1answer
46 views
How to save an image automatically to a specific folder or create a new folder if needed after taking a picture using the camera for android
I am currently trying to create an app which when taking a picture using the camera, when saving the image, it saves to a specific folder location and if the folder doesn't currently exist on the ...
0
votes
1answer
14 views
Clearing File Data before writing in Netlogo
I am trying to output some data in a file and I can output the data in file easily. But when I output data second time in file, it gets appended with the previous data. What I want to do is to clear ...
0
votes
2answers
47 views
C++, file i/o…i have a .txt file and i have to scan it for exons and introns from it and write them to separate files
program will sequentially read the DNA data from the input file and as it encounters exons and introns itwill write them out into separate files. The first exon discovered will be written into exon1.txt, ...
0
votes
2answers
85 views
About file input/ouput and exception in C++
I am reading Jesse Liberty's SAMS Teach Yourself C++ in 10 Minutes and testing the examples in the book. I find that there are some bugs in the code about file i/o but I don't know where they are. The ...
0
votes
0answers
44 views
Reading in file correctly for a 2d array (c++)
Im trying to read in a file where the first two lines are the dimensions of a "Game Board" starting at line three. What happens is when i read in the array, it reads in a 20x20 starting at line 0 in ...
0
votes
3answers
175 views
C++ 2d array from .txt file
My code prints out a wacked out version of a .txt file that displays a 20x20 table of characters and white spaces. How can i get the array to display properly as it does in the .txt. I can not use ...
1
vote
2answers
74 views
Last line only partially prints in Java
I have some java code that compares two files. When it finds similar numbers on a particular line it prints that line to a new file. This seems to work for a good amount of time... Until what I ...
-3
votes
1answer
73 views
C++ reading in a file .txt [closed]
So im trying to develop a miny game. I am stuck on reading in the gameboard properly. I want it to be 20 x 20. So i create an array that starts with 21 rows and columns. A buddy helped me out with ...
0
votes
2answers
53 views
Read file with strings and integers in matlab
I have to read a file in Matlab that looks like this:
D:\Classified\positive-videos\vid.avi 163 3 14 32 54 79 105 130 155 202 216 224 238 250 262 288 288 322 357 369 381 438 457 478 499 525 551
...
0
votes
1answer
69 views
Fscanf file read in matlab for mixed numeric and non-numeric data
I try to read data from file but I have no idea how to use fscanf normally.
Have file like this
surname1 A.A.(16 char everytime) 23323 3232 232322 ....
surname2 A.A. 23322 3232 232322 ....
surname3 ...
-3
votes
2answers
48 views
Writing to current file [closed]
I was trying to see if there is any way to write to the current file, in which code is being executed.
This is the code I wrote:
with open(__file__, 'r+') as f:
f.write('abc')
It does not ...
0
votes
2answers
31 views
Move Maildir contents to parent directory
i have to change my virtual mail folder tree.
I've configured a new mailserver and now i must import my old virtual mailboxes.
My old one directory was like ...
-1
votes
1answer
123 views
How to Write text file Java
The following code does not produce a file (I can't see the file anywhere). What is missing?
try
{
//create a temporary file
String timeLog = new ...
-1
votes
1answer
38 views
File content parsing on the fly with python [closed]
Is there an efficient way of parsing a certain file's content while it is being written?
My idea of doing it is in general lines (this is not a python code of course):
While(1):
Openfile(file);
...
4
votes
3answers
144 views
What is the difference between rb and r+b modes in file objects
I am using pickle module in Python and trying different file IO modes:
# works on windows.. "rb"
with open(pickle_f, 'rb') as fhand:
obj = pickle.load(fhand)
# works on linux.. "r"
with ...
3
votes
2answers
67 views
File is too large I can't get input to my php program [duplicate]
I'd like to get input from txt file but the file contain data 1.6 GB. So it crashed when I load the data into my variable how can I get it in my php program
2
votes
1answer
29 views
How to check that ReadFileEx ended loading without sleeping thread?
I used winapi ReadFileEx to load 30 megabyte array asynchronously
and holy shit it works perfectly good - i have got whole reading
for free, no slowdown of my calculations just array is magically
...
-1
votes
2answers
242 views
File I/O in C++ - Having some trouble writing back data?
This project is a basic ATM program. I'm using a file to store all the account details. So, every time I run the .exe file, It will read the data from the file and insert it into an AVL tree. And when ...
62
votes
11answers
112k 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 ...




