Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
5answers
572 views

Open a text file with WPF

There is a text file that I have created in my project root folder. Now, I am trying to use Process.Start() method to externally launch that text file. The problem I have got here is that the file ...
6
votes
5answers
607 views

Seek for TextFile

I'm working with very large text files, 2GB and more. I would like to have a Seek() like function. Has anyone done something like that? Loading to TStringList is out of the question. Also working with ...
5
votes
2answers
406 views

Delete first N characters from TextFile without creating a new file (Delphi)

I just wanna to delete from specified text file first N characters, but i'm stuck. Help me please! procedure HeadCrop(const AFileName: string; const AHowMuch: Integer); var F: TextFile; begin ...
4
votes
2answers
64 views

Does LinqToSql support text file connections?

I am having trouble getting a connection string initialized to a text file when using LinqToSQL. I am trying to create a DataContext using the following connection string: ...
4
votes
4answers
843 views

Is using TStringList to load huge text file the best way in Delphi?

What is the best way to load huge text file data in delphi? Is there any component that can load text file superfast? Let's say I have a text file contains database and stored in fix length format. ...
4
votes
1answer
117 views

Code cutting off string after runs many times

This code runs in a loop. After the 38th time it runs, the string that gets printed to the text file cuts off immediately after the second "M", doesn't even print the comma, and then stops printing ...
4
votes
3answers
637 views

Delphi Standard Input Output Code page

Delphi 2010 When reading from file using readLn procedure, by default i get unicode string converted from code page 1251 (code page of windows). How can i change this and read from file in other ...
3
votes
2answers
58 views

Reading tuples stored in textfile

I was looking for a way to permanently store tuples created by a python program also after runtime. So I just decided for simplicity to write that data into a textfile (or is there some much more ...
3
votes
5answers
177 views

Java delimiter while reading text file - regex/or not?

I am trying to read a text file written in this form: AB523:[joe, pierre][charlie][dogs,cat] ZZ883:[ronald, zigomarre][pele] I would like to create my structure and retrieve the information ...
3
votes
4answers
177 views

process large text file in python

I have a very large file (3.8G) that is an extract of users from a system at my school. I need to reprocess that file so that it just contains their ID and email address, comma separated. I have ...
3
votes
2answers
68 views

Txtfile search not working

Ok so i have inputted a number of records to a text file and i can both write to and read from this file, but i am now attempting to search through this textfile and have encountered a problem. ...
3
votes
4answers
328 views

How do I perform binary search on a text file to search a keyword in python?

The text file contains two columns- index number(5 spaces) and characters(30 spaces). It is arranged in lexicographic order. I want to perform binary search to search for the keyword.
3
votes
2answers
2k views

Java BufferedReader arabic text file problem

Problem: Arabic words in my text files read by java show as series of question marks : ?????? Here is the code: File[] fileList = mainFolder.listFiles(); BufferedReader bufferReader ...
3
votes
2answers
823 views

Using OleDbConnection to Read Tab-Seperated File

My tab-delimited file is something like this: ISO ISO3 ISO-Numeric AD AND 20 I've been trying the following code with no luck. OleDbConnection cn = new ...
3
votes
6answers
1k views

How to Log Console Screen into a Text File? [closed]

Possible Duplicate: Mirroring console output to a file I've a console application in C# and I want to Log into a text file every text appears on the screen. How to do that ? Unfortunately ...
2
votes
4answers
144 views

How to fix issue when loading CR only delimited File text in Delphi 7 ?

I have a big text file (about 100MB) and each lines are separated by CR character, and not CRLF. I tried to read this text file, line by line using TStringList.LoadFromFile() or ReadLn(F,..), but ...
2
votes
1answer
104 views

LoadToFile issue when trying to load .txt file into a string

After my previous question of SavingToFile with TStringList, I now need to load the file I created called Password.txt using LoadFromFile but I don´t know what the form of LoadFromFile is. The ...
2
votes
3answers
221 views

How to save a string to a .txt file in Delphi?

I need to make a program that generates a password that is saved in a text file format in a specific destination I set and the user needs to open the .txt to get the password to 'unlock' another ...
2
votes
2answers
90 views

write matrix in a txt file in C#

I am doing this in c# TextWriter tw = new StreamWriter("SQL_U.txt"); for (int j = 0; j < matrix.ColumnCount; j++) { for (int i = 0; i < matrix.RowCount; i++) { ...
2
votes
2answers
113 views

Compare IP address in textfile. How to search?

I have a textfile there the content is following: TME: 1316179740.2558|FNE: blog-comments.php|MSG: Kommenterade "ett nyare blogginl&auml;gg"-blogginlägget|IPA: ...
2
votes
4answers
135 views

Reading in a text file in Javascript or Jquery

Im new to Jquery and Javascript and im wondering how can i read information from a text file stored on my server and write back to this file again afterwards? I couldn't find much information after ...
2
votes
3answers
862 views

Java - delete line from text file by overwriting while reading it

I'm trying to delete a line of text from a text file without copying to a temporary file. I am trying to do this by using a Printwriter and a Scanner and having them traverse the file at the same ...
2
votes
5answers
149 views

Problem with Java FileReader

Hello I have this in my code File file = new File("words.txt"); Scanner scanFile = new Scanner(new FileReader(file)); ArrayList<String> words = new ArrayList<String>(); ...
2
votes
1answer
149 views

Textfile search from GUI

Ok so i have made a search function using scanner in console, but i would now like to create a search function from my GUI. When text is entered into a JTextFieldand JButton is clicked i would like a ...
2
votes
6answers
993 views

Quickest way to read text-file line by line in Java

For log processing my application needs to read text files line by line. First I used the function readLine() of BufferedReader but I read on the internet that BufferedReader is slow when reading ...
2
votes
2answers
463 views

delphi insert text into textfile at specific point

i want to edit a textfile. if i read a special line (let us say //--begin editing text here--//) then after this line i want to insert several lines but i don't want to override existing lines. is ...
2
votes
1answer
478 views

c++ - getline with delimiter storing an empty character

I am trying to input a delimited text file with getline but when I debug it it shows me that there is an empty character at the beginning of the variable. This is only happening with my tID variable ...
2
votes
6answers
221 views

How do I match a word in a text file using python?

I want to search and match a particular word in a text file. with open('wordlist.txt', 'r') as searchfile: for line in searchfile: if word in line: print line ...
2
votes
4answers
741 views

How do I save a multi-line textbox as one line to a text file?

Ok guys, I am making a function to save a file. I have come across a problem in that when I save the data from multi-line text boxes it saves x amount of lines as x amount of lines in the text file. ...
2
votes
1answer
270 views

how to make opening txt file in Excel work like if you right-click in Windows Explorer and Open With Excel?

My application interfaces with Excel using tab-delimited Unicode text files. I require that some cells have multiple lines (alt-enter in Excel, produces LF character (10)). If I right-click on the ...
2
votes
3answers
210 views

Searching and capturing a character using regular expressions Python

While going through one of the problems in Python Challenge, I am trying to solve it as follows: Read the input in a text file with characters as follows: ...
2
votes
3answers
148 views

Can I use a text file as my database in ROR?

I would like to use a delimited text file (xml/csv etc) as a replacement for a database within Ruby on Rails. Solutions? (This is a class project requirement, I would much rather use a database if I ...
2
votes
2answers
342 views

How to read data in chunks from notepad file in Matlab?

My data is in following format: TABLE NUMBER 1 FILE: ReservoirModel_CMGBuilder.irf WELL: ...
2
votes
7answers
2k views

In C, how should I read a text file and print all strings

I have a text file named test.txt I want to write a C program that can read this file and print the content to the console (assume the file contains only ASCII text). I don't know how to get the ...
2
votes
2answers
296 views

How to get last build label in text file

I have one project which is under Cruise control. I want to write one console application which will write the last build label of that project in one text file.
1
vote
3answers
37 views

How to change a word in a file with linux shell script

I have a text file which have lots of lines I have a line in it which is: MyCar on how can I turn my car off?
1
vote
1answer
28 views

LOAD DATA INFILE equivalent in Oracle

I just was wodering if there's an equivalent to MySQL LOAD DATA INFILE statemnent in Oracle? I need it because I want to read from a huge textfile into a database table.
1
vote
2answers
56 views

Text File Handling with SQL Database - Visual Basic

I have a text file contains delimited records. 1243;jhhf';982u4k;9u2349;huf8 kij;9238u;98ur23;jfwf;03i24 I need to replace the value of 4th part of every record with the value returned from SQL ...
1
vote
2answers
27 views

When I save items in a listbox there are too many lines in between

I need help in a little feature in my program. My program gets items from a website then saves it to a listbox. From that listbox it transfers it to another listbox putting the items, each in their ...
1
vote
2answers
60 views

Read a Text/CSV file from an SQL statement

I wish to use an external Text/CSV file to read data and run an SQL Query. Is this possible without using the External_Table concept? I do not have write permissions in the DB, hence cannot create a ...
1
vote
2answers
68 views

How to send part of the output of a Python script to a text file?

I want to only save part of the output of script.py, and to a file in another folder. script.py prints out a list of file names and their sizes, like file_asfs.txt- 2KB file_jsdfhkjh.doc- 17KB .... ...
1
vote
3answers
122 views

Android - reading a text file from Assets seems to include a LOT of junk before/after the actual data?

I package a text file with my Android App (in Assets) which I read within the App itself. To avoid this file being compressed, it's named 'mytestfile.mp3' and until recently, that worked just fine. ...
1
vote
1answer
46 views

Creating translator; Need to properly insert from a text file

For my CS class, we've been given an assignment to create an english to spanish translator using the text file from here: http://www.ilovelanguages.com/IDP/files/Spanish.txt So far, I've got the the ...
1
vote
8answers
96 views

Java - trouble reading txt.file

I have created a method for reading a file in Java. The file in question contains a list of books with the following format: lastname|firstname|title. However, when I try to use the method I get an ...
1
vote
2answers
69 views

import .txt to mysql

I have a 20000 by 1000 table in .txt file. Each column is separated by a tab. I need to import this huge table (2GB) to mysql. My sql table should have 1000 attributes and 20000 records. How can I do ...
1
vote
1answer
63 views

how to read from a text file contents file name extension in c++?

Hello I want to read from a text file full of directory contents Here's my example: below is my text file called MyText.txt MyText.txt title.txt,image.png,sound.mp3 I want to be able to read ...
1
vote
1answer
94 views

Android/java: String url does not work in HttpGet(url)

I construct a string with a value I get from another activity: Bundle b = getIntent().getExtras(); value = b.getString("bundledata"); url = "http://dl.dropbox.com/u/xxx/apptextfiles/"; url += ...
1
vote
1answer
192 views

List ODBC DSN Configurations in a Text File

When my machine is reimaged or swapped out, I have to take a screenshot of each Data Source in my the Microsoft ODBC Administration tool to make sure I get it right on the new machine. Even going to ...
1
vote
2answers
80 views

Wrong reading of text file in c++

I just want to read a text file and store the data into a vector. Thereby the value weight should be sum till the limit is reached. The first four lines will be read correctly but the following will ...
1
vote
6answers
500 views

Export a C# DataSet to a text file

There are a lot of examples online of how to fill a DataSet from a text file but I want to do the reverse. The only thing I've been able to find is this but it seems... incomplete? I want it to be in ...

1 2 3 4