Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.java.programmer > #16931
| Path | csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!news.glorb.com!news-out.readnews.com!transit4.readnews.com!news-out.news.tds.net!newsreading01.news.tds.net!53ab2750!not-for-mail |
|---|---|
| From | "qwertmonkey" <qwertmonkey@1:261/38.remove-s5i-this> |
| Subject | How can you make idle processors pick up java work? |
| Message-ID | <50197006.55897.calajapr@time.synchro.net> (permalink) |
| X-Comment-To | All |
| Newsgroups | comp.lang.java.programmer |
| X-FTN-AREA | COMP.LANG.JAVA.PROGRAMMER |
| X-FTN-MSGID | 1:261/38 5237cbaf |
| Content-Type | text/plain; charset=IBM437 |
| Content-Transfer-Encoding | 8bit |
| X-Gateway | time.synchro.net [Synchronet 3.16a-Win32 NewsLink 1.98] |
| Lines | 30 |
| Date | Wed, 01 Aug 2012 18:09:35 GMT |
| NNTP-Posting-Host | 69.21.70.65 |
| X-Complaints-To | news@tds.net |
| X-Trace | newsreading01.news.tds.net 1343844575 69.21.70.65 (Wed, 01 Aug 2012 13:09:35 CDT) |
| NNTP-Posting-Date | Wed, 01 Aug 2012 13:09:35 CDT |
| Organization | tds.net |
| Xref | csiph.com comp.lang.java.programmer:16931 |
Show key headers only | View raw
From: qwertmonkey@syberianoutpost.ru
just in case someone ponders over the same. At the end of the day there is
no speed improvement whatsoever compared to doing the char reading into a
buffer and parsing out the sentences yourself
~
the code below does the same thing
~
BfR = Files.newBufferedReader(IFlPth, Charset.forName("UTF-8"));
// __
aSx = BfR.readLine();
while(aSx != null){
iSL = aSx.length();
for(int k = 0; (k < iSL); ++k){
iKdPnt = aSx.codePointAt(k);
++lTtlKdPnts;
}
++lLns;
iTtlRdByts += iSL;
aSx = BfR.readLine();
}// (iRdByts > -1)
// __
BfR.close();
~
lbrtchx
--- BBBS/Li6 v4.10 Dada-1
* Origin: Prism bbs (1:261/38)
--- Synchronet 3.16a-Win32 NewsLink 1.98
Time Warp of the Future BBS - telnet://time.synchro.net:24
Back to comp.lang.java.programmer | Previous | Next — Next in thread | Find similar | Unroll thread
How can you make idle processors pick up java work? "qwertmonkey" <qwertmonkey@1:261/38.remove-s5i-this> - 2012-08-01 18:09 +0000 Re: How can you make idle processors pick up java work? "Daniel Pitts" <daniel.pitts@1:261/38.remove-s5i-this> - 2012-08-01 18:09 +0000
csiph-web