Not logged in.  Login/Logout/Register | List snippets | | Create snippet | Upload image | Upload data

18
LINES

< > BotCompany Repo | #1008169 // readerToString - fully read from Reader into string and close it

JavaX fragment (include)

static S readerToString(Reader r) ctex {
  if (r == null) null;
  try {
    new StringBuilder buf;
    int n = 0;
    while (true) {
      int ch = r.read();
      if (ch < 0)
        break;
      buf.append((char) ch);
      ++n;
      //if ((n % loadPage_verboseness) == 0) print("  " + n + " chars read");
    }
    ret buf.toString();
  } finally {
    r.close();
  }  
}

download  show line numbers  debug dex  old transpilations   

Travelled to 19 computer(s): aoiabmzegqzx, bhatertpkbcr, cbybwowwnfue, cfunsshuasjs, gwrvuhgaqvyk, ishqpsrjomds, lpdgvwnxivlt, mowyntqkapby, mqqgnosmbjvj, ofpaelxlmzfo, onxytkatvevr, pyentgdyhuwx, pzhvpgtvlbxg, qsqiayxyrbia, tslmcundralx, tvejysmllsmz, vouqrxazstgt, whxojlpjdney, xrpafgyirdlv

No comments. add comment

Snippet ID: #1008169
Snippet name: readerToString - fully read from Reader into string and close it
Eternal ID of this version: #1008169/3
Text MD5: f1714e2acf69335ca0a267f49ac5f994
Author: stefan
Category: javax / i.o.
Type: JavaX fragment (include)
Public (visible to everyone): Yes
Archived (hidden from active list): No
Created/modified: 2021-06-04 23:18:04
Source code size: 392 bytes / 18 lines
Pitched / IR pitched: No / No
Views / Downloads: 475 / 1877
Version history: 2 change(s)
Referenced in: [show references]