Tagged Questions

3
votes
6answers
111 views

Check for unique line data from file with 5 millions lines in Java

I have big file with row like ID|VALUE in one pass. In case of ID repeat, line must be ignored. How to effectively make this checking? added: ID is long(8 bytes). I need a solution that uses ...
1
vote
1answer
68 views

how to seperate a csv file using commas if it has null values and we need data corresponding to upper column?

My code is BufferedReader fileReader = new BufferedReader(new FileReader(strFileName)); while ((strLine = fileReader.readLine()) != null) { // [2011.06.28] based on ...
1
vote
4answers
401 views

File processing in java

I have a file of size 2GB which has student records in it. I need to find students based on certain attributes in each record and create a new file with results. The order of the filtered students ...
1
vote
3answers
433 views

Print a string that contains a certain pattern in Java

I am trying to find a regular expression within a line of a .csv file, so I can eventually save all the matches to another file, and lose all the other junk. So a line in my file might look like: ...
1
vote
3answers
941 views

What is the best way to read a text file two lines at a time in Java?

BufferedReader in; String line; while ((line = in.readLine() != null) { processor.doStuffWith(line); } This is how I would process a file line-by-line. In this case, however, I want to send two ...
0
votes
0answers
195 views

Problem in parsing xml containing chinese characters

I have an xml file containing chinese characters. While parsing the file it gets caught in exception. DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance(); DocumentBuilder ...
0
votes
1answer
52 views

How to parse INI-like (or XML-like)files but with closing section tag?

I need to pase a text file in this format: [section A begin] some lines more lines [section 1 begin] some lines [section i begin] some lines [section i end] more lines [section 1 end] more lines ...