📄 exsocket.java
字号:
package exframework;
import javax.microedition.io.SocketConnection;
/**
* <p>Title: ExFramework</p>
*
* <p>Description: lizhenpeng</p>
*
* <p>Copyright: Copyright (c) 2005</p>
*
* <p>Company: LP&P</p>
*
* @author lipeng
* @version 1.0
*/
import javax.microedition.io.*;
import java.io.*;
import javax.microedition.lcdui.*;
public class ExSocket implements AllAction
{
SocketConnection conn;
byte[] readBuffer;
byte[] writeBuffer;
public ExSocket()
{
writeBuffer = new byte[4];
readBuffer = new byte[4];
}
public void allAction(MainForm form)
{
try
{
conn=(SocketConnection)Connector.open("socket://localhost:8070");
DataInputStream in = conn.openDataInputStream();
DataOutputStream out = conn.openDataOutputStream();
out.writeInt(1);
int imageSize = in.readInt();
readBuffer = new byte[imageSize];
in.read(readBuffer,0,imageSize);
Image image = Image.createImage(readBuffer,0,readBuffer.length);
form.append(image);
}
catch(Exception e)
{
System.out.print(e);
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -