Guys I need to understand something: the \n comes at the begining of a new line currect? If so, I am trying to parse a file that has RTL characters in it and they are at the begining of a line, so:

  1. xxx xxxx, ABC DEFG, 1, 11, 111, 786
  2. xxx xxxx, ABC DEFG, 1, 11, 111, 786
  3. etc...

when parsing the txt file (android from assets) I keep getting the first word from the next line concatenated to the Integer from the previous line. I have tried everything but with no luck.

Here is a code snippet:

            InputStream is;
            try {
                is = new BufferedInputStream(getAssets().open(fileName));
            } catch (IOException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }

            try {
                InputStream is = new BufferedInputStream(getAssets().open(fileName));
                byte[] c = new byte[128];
                byte[] d = null;
                int readChars = 0;
                int lineNumber = 0;
            String line;
                String[] paramLineArray = null;
                int k;
                while ((readChars = is.read(c)) != -1) {
                    for (int i = 0; i < readChars; i++) {
                        if (c[i] == '\n') {
                            lineNumber++;
                            line = new String(c);
                            k = 0;
                            StringTokenizer st = new StringTokenizer(line,",");
                            paramLineArray = new String[st.countTokens()];
                            while (st.hasMoreTokens()) {
                              // get next token and store it in the Line
                              paramLineArray[k] = st.nextToken();
                              k++;
                            }
                        }                       
                    }
                    publishProgress(((int) (1 / (float) lineNumber) * 100));
                    populateTables(paramLineArray, tblName, tblElements);
                }

What I am trying to achieve is this:

Parse the text file really fast Line by line into an array that is the inserted into a DB...

Any ideas???

Help is much appreciated as I've been at it for days now (loosing my hair :-()...

Currently I have code working with InputStreamReader but it is very slow!!!!!

Thank you.

JadeYe.

link|improve this question
\n is at the end of the line. – Joop Eggen Feb 2 at 23:27
feedback

1 Answer

Use:

BufferedReader in = new BufferedReader(
        new InputStreamReader(getAssets().open(fileName), "UTF-8"));
try {
    for (;;) {
        String line = in.readLine();
        if (line == null)
            break;
        ...
     }
} finally {
    in.close();
}
link|improve this answer
Joop thank you for you answer. I have just checked your solution but they both result with the same time: 2.22 minutes for 1500 records (checked on Nexus S ICS 4.0.3). Where as for the BufferedInputStream it is to be much faster...any suggestions??? – Jadeye Feb 3 at 0:36
So it is that using characters is slower than bytes. But at one time you are best served with UTF-8 for RTL. You could try InputStreamReader on BufferedInputStream on open, but I doubt it. It might be that StringTokenizer is a slowing factor too. – Joop Eggen Feb 3 at 1:39
Sorry but no go...InputStreamReader does not take BufferedInputStream...only one can be an Input (as far as I know) – Jadeye Feb 3 at 9:30
InputStreamReader(InputStream in, String encoding) so BufferedInputStream should do too. – Joop Eggen Feb 3 at 17:47
feedback

Your Answer

 
or
required, but never shown

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