📄 untitled1.java~6~
字号:
package org.jetic.web.chat;/** * <p>Title: lisb</p> * <p>Description: web</p> * <p>Copyright: Copyright (c) 2003</p> * <p>Company: webJQ</p> * @author myloverosecome@163.com * @version 1.0 */public class Untitled1 { public Untitled1() { } public void test(){ byte[] b=new byte[4]; int i=-2147483647; appendInt(i); } public void appendInt(int data) { byte[] intBuf = new byte[4]; intBuf[3] = (byte)(data & 0xff); intBuf[2] = (byte)((data >>> 8) & 0xff); intBuf[1] = (byte)((data >>> 16) & 0xff); intBuf[0] = (byte)((data >>> 24) & 0xff); } public static void main(String[] args) { Untitled1 untitled11 = new Untitled1(); untitled11.test(); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -