socket传送字节流

因为考虑到数据传送的安全性.所以,用字节流进行socket的传输..例子如下:
客户端:
//获得流
byteOut = new ByteArrayOutputStream();
out = new DataOutputStream(byteOut);
    
//转为字节流
byte[] messes=message.getBytes("GBK");
//获得长度
int length=messes.length;
    
//把欲发送的长度转换成字节流
byte[] lengthbytes = ByteUtil.integerToBytes(length, 4);
    
//System.out.println("将要写过去的数据为:"+messes.length);
    
System.out.println("开始写socket到后台============================");
   
//把长度写过去
byteOut.write(lengthbytes);
//把内容写过去
byteOut.write(messes);    
out.flush();    


附ByteUtil方法:
public static byte[] integerToBytes(int integer, int len) {
//   if (integer < 0) { throw new IllegalArgumentException("Can not cast negative to bytes : " + integer); }
   ByteArrayOutputStream bo = new ByteArrayOutputStream();
   for (int i = 0; i < len; i ++) {   
    bo.write(integer);
    integer = integer >> 8;
   }
   return bo.toByteArray();
}


服务端:
DataInputStream in = new DataInputStream(receiver.getSocket() .getInputStream());
//读取长度
int len=ByteUtil.bytesToInteger(ByteUtil.readBytes(in,4));


//读取内容
String mess = new String(ByteUtil.readBytes(in, len)).trim();


附换转读取方法--读取字节方法:
public static byte[] readBytes(InputStream in, long length) throws IOException {
   ByteArrayOutputStream bo = new ByteArrayOutputStream();
   byte[] buffer = new byte[1024];
   int read = 0;
   while (read < length) {
    int cur = in.read(buffer, 0, (int)Math.min(1024, length - read));
    if (cur < 0) { break; }
    read += cur;
    bo.write(buffer, 0, cur);
   }
   return bo.toByteArray();
}
public static int bytesToInteger(byte[] bytes)
{
 return bytesToInteger(bytes, 0, bytes.length);
 }




读取String方法:
public static byte[] readBytes(InputStream in, long length) throws IOException {
       // 写完以后进行读操作
        BufferedReader br = new BufferedReader(new InputStreamReader(client.getInputStream(), "GBK"));
        // 设置超时间为10秒
        client.setSoTimeout(100 * 1000);
        StringBuffer sb = new StringBuffer();
        String temp;
        while ((temp = br.readLine()) != null) {
            sb.append(temp);
        }
        writer.close();
        br.close();
        client.close();
        return sb.toString();
}


这样写的socket程序的可容错性会更强.
http://hi.baidu.com/qinghua9/blog/item/71109422a9ae8dfbd7cae288.html




 
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值