Is java.util.Scanner that slow?

后端 未结 7 1667
悲&欢浪女
悲&欢浪女 2021-02-07 08:17

In a Android application I want to use Scanner class to read a list of floats from a text file (it\'s a list of vertex coordinates for OpenGL). Exact code is:

Sc         


        
相关标签:
7条回答
  • 2021-02-07 08:59

    Yes I'm not seeing anything like this. I can read about 10M floats this way in 4 secs on the desktop, but it just can't be that different.

    I'm trying to think of other explanations -- is it perhaps blocking in reading the input stream from getAssets()? I might try reading that resource fully, timing that, then seeing how much additional time is taken to scan.

    0 讨论(0)
  • 2021-02-07 09:01

    Scanner may be part of the problem, but you need to profile your code to know. Alternatives may be faster. Here is a simple benchmark comparing Scanner and StreamTokenizer.

    0 讨论(0)
  • 2021-02-07 09:04

    I got the exactly same problem. It took 10 minutes to read my 18 KB file. In the end I wrote a desktop application that converts those human readable numbers into machine-readable format, using DataOutputStream.

    The result was astonishing.

    Btw, when I traced it, most of the Scanner method calls involves regular expressions, whose implementation is provided by com.ibm.icu.** packages (IBM ICU project). It's really overkill.

    The same goes for String.format. Avoid it in Android!

    0 讨论(0)
  • 2021-02-07 09:06

    Don't know about Android, but at least in JavaSE, Scanner is slow.

    Internally, Scanner does UTF-8 conversion, which is useless in a file with floats.

    Since all you want to do is read floats from a file, you should go with the java.io package.

    The guys on SPOJ struggle with I/O speed. It's is a Polish programming contest site with very hard problems. Their difference is that they accept a wider array of programming languages than other sites, and in many of their problems, the input is so large that if you don't write efficient I/O, your program will burst the time limit.

    Check their forums, for example, here, for an idea of a custom parser.

    Of course, I advise against writing your own float parser, but if you need speed, that's still a solution.

    0 讨论(0)
  • 2021-02-07 09:07

    Very Insightful post. Normally when I worked with Java thought Scanner is fastest on PC. The same when I try to use it in AsyncTask on Android, its WORST.

    I think Android must come up with alternative to scanner. I was using scanner.nextFloat(); & scanner.nextDouble(); & scanner.nextInt(); all together which made my life sick. After I did my tracing of my app, found that the culprit was sitting hidden.

    I did change to Float.parseFloat(scanner.next()); similarly Double.parseDouble(scanner.next()); & Integer.parseInt(scanner.next());, which certainly made my app quite fast I must agree, may be 60% faster.

    If anyone have experienced the same, please post here. And I'm too looking out at alternative to Scanner API, any one have bright ideas can come forward and post here on reading file formats.

    0 讨论(0)
  • 2021-02-07 09:12

    As other posters have stated it's more efficient to include the data in a binary format. However, for a quick fix I've found that replacing:

    scanner.nextFloat();
    

    with

    Float.parseFloat(scanner.next());
    

    is almost 7 times faster.

    The source of the performance issues with nextFloat are that it uses a regular expression to search for the next float, which is unnecessary if you know the structure of the data you're reading beforehand.

    It turns out most (if not all) of the next* use regular expressions for a similar reason, so if you know the structure of your data it's preferable to always use next() and parse the result. I.E. also use Double.parseDouble(scanner.next()) and Integer.parseInt(scanner.next()).

    Relevant source: https://android.googlesource.com/platform/libcore/+/master/luni/src/main/java/java/util/Scanner.java

    0 讨论(0)
提交回复
热议问题