Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Virtually every code example out there reads a TXT file line-by-line and stores it in a String array. I do not want line-by-line processing because I think it's an unnecessary waste of resources for my requirements: All I want to do is quickly and efficiently dump the .txt contents into a single String. The method below does the job, however with one drawback:

private static String readFileAsString(String filePath) throws java.io.IOException{
    byte[] buffer = new byte[(int) new File(filePath).length()];
    BufferedInputStream f = null;
    try {
        f = new BufferedInputStream(new FileInputStream(filePath));
        f.read(buffer);
        if (f != null) try { f.close(); } catch (IOException ignored) { }
    } catch (IOException ignored) { System.out.println("File not found or invalid path.");}
    return new String(buffer);
}

... the drawback is that the line breaks are converted into long spaces e.g. "                                 ".

I want the line breaks to be converted from \n or \r to <br> (HTML tag) instead.

Thank you in advance.

share|improve this question
I tried adding this method to convert line breaks from the text file into HTML <br> tags, but it did not work: string.replaceAll("(\r\n|\n)", "<br />"); – slashline May 25 '11 at 14:40
1  
Processing it line-by-line will be just as efficient (if not more so) as dumping the whole file, then going back and replacing line breaks with <br/> tags – Sam Dufel May 25 '11 at 14:44
Really, a loop going through every line is just as efficient? Interesting.. I might go with that then. Thanks! – slashline May 25 '11 at 14:47
@slashline - what is the encoding of the character data in the file? – McDowell May 25 '11 at 15:00
1  
Where are &nbsp;'s coming from? It could be stripping out the \r and \n that you are seeking to take care of here. – d-live May 25 '11 at 15:29
show 2 more comments

5 Answers

up vote 3 down vote accepted

What about using a Scanner and adding the linefeeds yourself:

sc = new java.util.Scanner ("sample.txt")
while (sc.hasNext ()) {
   buf.append (sc.nextLine ());
   buf.append ("<br />");
}

I don't see where you get your long spaces from.

share|improve this answer
This is still line-by-line processing, but someone said that it's not slower than directly dumping a .txt file into a basic String. So I might do line-by-line processing then, but but this brings up a question: Which is faster, Scanner or BufferedReader? – slashline May 25 '11 at 15:11
If you don't feel a difference, maybe it isn't that big? For typical sizes of html-pages, I wouldn't expect a relevant difference. There are so many possible influences (harddrive speed, harddrive cache, OS, file size, java version, ...) that you should do your measurements on a system close to the target system and with similar input. – user unknown May 25 '11 at 15:19

You can read directly into the buffer and then create a String from the buffer:

    File f = new File(filePath);
    FileInputStream fin = new FileInputStream(f);
    byte[] buffer = new byte[(int) f.length()];
    new DataInputStream(fin).readFully(buffer);
    fin.close();
    String s = new String(buffer, "UTF-8");
share|improve this answer

You could add this code:

return new String(buffer).replaceAll("(\r\n|\r|\n|\n\r)", "<br>");

Is this what you are looking for?

share|improve this answer
That won't work. I think the problem is that the buffer variable is byte, so it does not have \r\n. Instead of \r\n it has spaces.. which makes it harder to properly insert <br>. – slashline May 25 '11 at 14:53
I have tried on a Windows pc and it works correctly. – Fabrizio D'Ammassa May 26 '11 at 6:39

The code will read the file contents as they appear in the file - including line breaks. If you want to change the breaks into something else like displaying in html etc, you will either need to post process it or do it by reading the file line by line. Since you do not want the latter, you can replace your return by following which should do the conversion -

return (new String(buffer)).replaceAll("\r[\n]?", "<br>");
share|improve this answer
This also didn't work. I think the problem is that the buffer variable is byte, so the \r\n are probably stripped away. Instead of \r\n it has spaces.. which makes it harder to properly insert <br>. – slashline May 25 '11 at 14:58
\r and \n are ascii 10 and 13 respectively. I dont agree with they cant fit in byte. Try the replace anyways - I see no reason why it wont work otherwise you need to inspect your source file if it has any of those characters. Or try the code with any other text file created using notepad etc. If you see any changes, you will need to tell us what kind of text file you are using. – d-live May 25 '11 at 15:10
StringBuilder sb = new StringBuilder();
        try {
            InputStream is = getAssets().open("myfile.txt");
            byte[] bytes = new byte[1024];
            int numRead = 0;
            try {
                while((numRead = is.read(bytes)) != -1)
                    sb.append(new String(bytes, 0, numRead));
            }
            catch(IOException e) {

            }
            is.close();
        }
        catch(IOException e) {

        }

your resulting String: String result = sb.toString();

then replace whatever you want in this result.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.