Tagged Questions
0
votes
0answers
15 views
Read a String-object out of a .txt file from the res folder of a Blackberry app
I just started to develop a simple Blackberry app which shows a text sequence in a RichTextField on a MainScreen. When I define the String directly in the sourcecode, then I have no problem to display ...
0
votes
3answers
32 views
How to search and replace text in a file using Python?
How do i search and replace text in a file using Python 3?
Here is my code:
import os
import sys
import fileinput
print ("Text to search for:")
textToSearch = input( "> " )
print ("Text to ...
0
votes
1answer
46 views
How to write an array to a text file on internal storage?
I need to store some data as a text file on the internal storage.
for example below, I have a button, I'd like to save some data in a text file each time the button is clicked. I am testing an example ...
1
vote
1answer
57 views
Merge Two text files line by line using batch script
I have 2 text files; A.txt and B.txt and I want to merge them to make C.txt using a batch script.
However (here's the tricky part) I wish to do it so each line from A.txt is appended with a space ...
0
votes
0answers
19 views
Read an online text file and display the content as alertMessage in Android
How to read an online text file and display the content in alertMessage in Android. The file contain more than one line of text. The following code is reading the line but i cant able to use the ...
-2
votes
0answers
35 views
How do I do mad libs in python by reading other text files, process it, then write it to another text file? [closed]
Here's my code for now:
import random
church = open("church.txt")
c2 = church.readlines()
noun = random.choice(open("nouns.txt").readlines())
verb = ...
3
votes
3answers
82 views
Python - Editing a single line in a large text file
So I need to record a set of 4 integers whose values are different for every second of the day. i.e.:
#Here the values are initialized to the same value, however they will change as samples are taken
...
1
vote
1answer
51 views
Replace the values in text files in a directory in Python
I have some tif images with their corresponding header which are in tfw format. as any other image header, it includes: the pixel size in both x and y direction, rotations and coordinates of the upper ...
0
votes
5answers
63 views
Android: Write text to txt
With the following code, I try to write to my sdcard:
public void writedata(String data) {
//BufferedWriter out = null;
System.out.println(data);
try{
...
0
votes
3answers
35 views
Combine / merge all files in dir into one text file
I am trying to merge all files in a dir into one text file with PHP.
All the files are text files and have one word on each line.
I just need to combine them all into one text file with all the ...
3
votes
4answers
72 views
How to read a text file inside a JAR? [duplicate]
What I am attempting to do is store a text file (that won't change) inside the JAR of the program so that it can be read. The purpose of the text file is that it will be read in by one of my classes ...
0
votes
0answers
30 views
Swiftmailer select emails from text file
Im new here and i have a question. I want to make swiftmailer batchsend option working from a text file, not mysql. Basically, i need to select emails with swiftmailer from a text file, for sending. ...
0
votes
3answers
68 views
Ping Servers From Text File
I'm trying to ping about ~20-30 servers that are on a text file and can be updated accordingly (servers change name constantly or become obsolete). And I don't want to put the servers in the batch ...
0
votes
4answers
69 views
Java - FilenotfoundException for reading text file
by running this...
File file = new File("Highscores.scr");
i keep getting this error, and i really don't know how to get around it.
the file is currently sitting in my source packages with my ...
0
votes
0answers
50 views
Reading in file lines with StreamReader produces an empty line on the second pass
I am reading in lines from a file using StreamReader. On the 2nd pass, it reads in line 2 as nothing, even though there are 8 lines in the file.
This function was working 30 minutes ago, and I didn't ...
1
vote
2answers
38 views
Java: reading text from a file results with strange formatting
Usually, when I read text files, I do it like this:
File file = new File("some_text_file.txt");
Scanner scanner = new Scanner(new FileInputStream(file));
StringBuilder builder = new ...
0
votes
1answer
38 views
What is the shell script instruction to divide a file with sorted lines to small files?
I have a large text file with the next format:
1 2327544589
1 3554547564
1 2323444333
2 3235434544
2 3534532222
2 4645644333
3 3424324322
3 5323243333
...
And the output should be text ...
2
votes
2answers
90 views
Better to store data in RAM, text file, or database
I am working on a project where I am using words, encoded by vectors, which are about 2000 floats long. Now when I use these with raw text I need to retrieve the vector for each word as it comes ...
0
votes
1answer
54 views
C++ Finding a line from a text file and updating/writing the line
I have a bank account file that the program should be able to read. This function works as of now with the use of ifstream. But I want the program to read the 6th line of the text file (which has the ...
0
votes
1answer
97 views
Reading integers from files in Qt
I have a text file, with many lines that goes like this:
1,1
2
7,7
11,11
13,13
0,0
I would like to take every integer and assign it to a variable, using the text file system that Qt provides. ...
2
votes
1answer
74 views
How can I read only parts of text file?
I have a PHP script that works a lot with large text files, mostly log files. The problem is that most of the time I only want a section of it, from one split point to another. But having to read a ...
0
votes
1answer
102 views
Cannot read file using Scanner, never gets into loop
I am trying to read a text file in order to copy some parts of it into a new text file.
This is how I create my Scanner item :
// folder
File vMainFolder = new ...
0
votes
2answers
30 views
read a big text file and copy the selected lines to another file
I need to create a database table from here:
So, I copied the same file to a server folder using curl command. I need to retrieve 00-00-00 (hex) XEROX CORPORATION, 00-00-01 (hex) XEROX CORPORATION ...
-5
votes
0answers
29 views
Decode this bunch of text? [closed]
Hey I've been searching the web on how to decode this text but all I seem to find are tutorials on winzip etc etc
Any help would be greatly appreciated. Thanks
14,20,21,2,2013
Esp atnefcp zq esp ...
2
votes
2answers
69 views
Java. How to append text to top of file.txt
I need to add text to beggining of text file via Java.
For example I have test.txt file with data:
Peter
John
Alice
I need to add(to top of file):
Jennifer
It should be:
Jennifer
Peter
John
...
0
votes
7answers
66 views
How to find certain words in a text file, then find numbers in Java?
I have the following text file (answers.txt):
Problem A: 23|47|32|20
Problem B: 40|50|30|45
Problem C: 5|8|11|14
Problem D: 20|23|25|30
What I need is something that will read ...
0
votes
1answer
30 views
jar file not properly finding the files
I have spent the past 3 nights going crazy trying to find an answer to this.
So I have a java program and I want it to be in a jar format and I want it to be able to read in text and image files.
I ...
1
vote
3answers
59 views
How to get several lines from a text file?
I have a text file:
hh
Something sdf....
one line
empty line
other line
goal
Something apf ee
one line
goal
List<String> goo = new List<String>();
...
0
votes
1answer
44 views
creating array of text files with FPS
Is it possible that FPS program read user input and then creates a file with a name of that input and that read another input and so on and on..?
I have tried to create array of text file but got ...
0
votes
2answers
29 views
Deleting a line from a text file (python)
how to you delete a specific line from a text file using readlines()
like:
f_open = open("textfile.txt", "r")
lines = f_open.readlines()
how do you use lines to choose a line in textfile.txt and ...
0
votes
2answers
57 views
How do you replace a line of text in a text file (python) [duplicate]
i have a text file that looks like this:
unknown
unknown
etc.
How do you choose a specific line in the text file, delete that line than replace it with a specific string.
1
vote
1answer
20 views
How to reload a changing file?
I am making a script that looks for changes in a file using python. It is being pushed using FTP to the server but I cannot make the script reload a file with the same name and get new data from that.
...
0
votes
2answers
65 views
Detect Form Feed Character
I am using C# to read in a text file that has form feed characters in it.
I need to do something when I hit a line that starts with a form feed character.
How can I check for this?
Example:
...
0
votes
0answers
35 views
Javascript XMLHttpRequest doesn't read all text file content
I've been trying to download a text file using the code below:
var req = new XMLHttpRequest();
req.open('GET', window.location.href.replace('index.html', '') + 'data/data.txt', ...
1
vote
1answer
82 views
Reading txt file from jar fails but reading image works
I have an issue which has been bothering me for days... I checked similar questions but couldn't find a solution.
I use NetBeans IDE. I build the project jar file i.e "Clock.jar" which contains a ...
1
vote
1answer
18 views
Load data from text file with ajax/javascrpt into html problems
I want to load data from this text file that is in the same folder as the html file on my computer but it won't work. In process of learning Ajax and put together this little test for myself ...
0
votes
2answers
42 views
Creating long text file in cmd
Simple question i need to create reset.css file with batch file. I know how to make short-text files but when trying to put in a long text it doesn't work.
Here's the text
html, body, div, span, ...
0
votes
2answers
46 views
Python pylab, assigning text file into array with funny format
I have some troubles trying to get the formatting right in order to plot this graph. this is what I have so far
from pylab import*
with open("spineprox.txt") as f:
data = f.read()
data = ...
-1
votes
2answers
83 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 ...
1
vote
2answers
34 views
Check whether a link to a file is a txt
I have a varaible UrlList which holds the Directory of which is supposed to be entered in a Text box,
what I want though, is to check whether the given Directory file is a text file or not, so the ...
-3
votes
3answers
88 views
Reading text files into an array in C
Just got a question regards, when you read lines of text from a text file how would you separate the words and store them into an array.
For example if I have two lines of text in my text file that ...
1
vote
1answer
38 views
Writing info from an array and cookies to a text file with PHP
I'm trying to write info from an array and from cookies (that have been put into variables, i.e. $usergatsby) into a text file that has been created with PHP. Below is the code of what I would like to ...
-3
votes
2answers
36 views
unable to read from file .Text format unknown [closed]
I'm unable to read data from this file .. .Its a .dat file & i tried opening using notepad. But after opening I'm unable to read from it.The words are not in English . I tried changing the font ...
0
votes
2answers
87 views
How to determine Unix text files in C?
I am writing a C program that looks at all files in the current directory using DIR, opendir(), and readdir(), then assigning them to a dirent struct as below.
int main(int argc, char *argv[])
{
...
0
votes
2answers
93 views
Creating a file text with symfony2 and twig
I would like to generate a file text from a symfony2 controller with twig.
Like normal html templating but with plain text, and save the file somewhere.
Is it possible ?
-4
votes
1answer
64 views
How to set path of a text file created by an visual studio 2010 application?
I am creating an app in Visual Studio 2010 using C# just to generate a string which contains data entered manually when that app runs. I have given a create button to generate that text file. How can ...
-3
votes
1answer
74 views
How to save results into the text file? [duplicate]
here is the tic tac toe game in java, can somebody explain how to save how many times win X and how many times O into the text file, I looked at similar threads but I don't know how to make it in this ...
1
vote
3answers
69 views
Search text file for user variable - Whats wrong with this code
Trying to read from a text file based on a user variable entry
my entry has variations (upper/lower case) of the name "Big Fred"
The code runs but I am getting no results back.
The code on my ...
1
vote
5answers
111 views
Using BufferedReader to read Text File
I'm having problems with using the BufferedReader
I want to print the 6 lines of a text file:
public class Reader {
public static void main(String[]args) throws IOException{
FileReader in = ...
0
votes
2answers
42 views
How to get a column and line from textfile. php/html
If i have a textfile called text.txt, inside the textfile at column 2 line 6 there is one word "help" how do i read that word and print it out with php/html?




