📄 iolsb.java
字号:
/* JEsd * Copyright (C) 1999 JCraft Inc. * * Written by: 1999 ymnk * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public License * as published by the Free Software Foundation; either version 2 of * the License, or (at your option) any later version. * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Library General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */package com.jcraft.jesd;final class IOLSB extends IO{ int readInt() throws java.io.IOException{ int i=in.read(ia, 0, 4); if(i==-1){ throw new java.io.IOException(); } i=ia[0]&0xff; i|=((ia[1]&0xff)<<8); i|=((ia[2]&0xff)<<16); i|=((ia[3]&0xff)<<24); return i; } int readShort() throws java.io.IOException{ int i=in.read(sa, 0, 2); if(i==-1){ throw new java.io.IOException(); } i=sa[0]&0xff; i|=((sa[1]&0xff)<<8); return i; } void writeInt(int val) throws java.io.IOException{ ia[0]=(byte)((val) & 0xff); ia[1]=(byte)((val >> 8) & 0xff); ia[2]=(byte)((val >> 16) & 0xff); ia[3]=(byte)((val >> 24) & 0xff); out.write(ia, 0, 4); } void writeShort(int val) throws java.io.IOException{ sa[0]=(byte)((val) & 0xff); sa[1]=(byte)((val >> 8) & 0xff); out.write(sa, 0, 2); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -