📄 exdatainputstream.java
字号:
// Copyright (C) 1998, 1999, 2001 Chris Nokleberg// Please see included LICENSE.TXTpackage com.sixlegs.image.png;import java.io.ByteArrayOutputStream;import java.io.DataInputStream;import java.io.EOFException;import java.io.IOException;import java.io.InputStream;final class ExDataInputStreamextends DataInputStream{ public ExDataInputStream(InputStream in) { super(in); } public static long unsign(int x) { return 0xFFFFFFFFL & x; } public long readUnsignedInt() throws IOException { return unsign(readInt()); } public String readString() throws IOException { return readString(-1, PngImage.LATIN1_ENCODING); } public String readString(String encoding) throws IOException { return readString(-1, encoding); } public String readString(int limit) throws IOException { return readString(limit, PngImage.LATIN1_ENCODING); } public String readString(int limit, String encoding) throws IOException { ByteArrayOutputStream bytes = new ByteArrayOutputStream(limit < 0 ? 80 : limit); int i; for (i = 0; i != limit; i++) { int b = readByte(); if (b == 0) break; bytes.write(b); } return bytes.toString(encoding); } static public double parseFloatingPoint(String token) { int st = 0; int e1 = Math.max(token.indexOf('e'),token.indexOf('E')); double d = Double.valueOf(token.substring(st, (e1 < 0 ? token.length() : e1))).doubleValue(); if (e1 > 0) d *= Math.pow(10d, Double.valueOf(token.substring(e1+1)).doubleValue()); return d; } public double readFloatingPoint() throws IOException { return parseFloatingPoint(readString()); }// public int readBytes(byte[] b)// throws IOException// {// return readBytes(b, 0, b.length);// }// public int readBytes(byte[] b, int off, int len)// throws IOException// {// int total = 0;// while (total < len) {// int result = in.read(b, off + total, len - total);// if (result == -1) {// throw new EOFException();// }// total += result;// }// return total;// }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -