6970717273747576777879
if (isAscii) isAscii = det.isAscii(data, available); //DoIt if non-ascii and not done yet. if (!isAscii && !done) done = det.doIt(data, available, false); } det.dataEnd(); if (isAscii)
9596979899100101102103104105
if (isAscii) isAscii = det.isAscii(buf, len); //DoIt if non-ascii and not done yet. if (!isAscii && !done) done = det.doIt(buf, len, false); } det.dataEnd(); if (isAscii) {
109110111112113114115116117118119
boolean isAscii = true; int len = buf.length; isAscii = det.isAscii(buf, len); if (!isAscii) det.doIt(buf, len, false); det.dataEnd(); if (isAscii) charset_ = "ASCII"; return charset_;