基本信息
源码名称:茄子快传(java源码)
源码大小:0.17M
文件格式:.rar
开发语言:Java
更新时间:2024-11-15
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300

本次赞助数额为: 2 元 
   源码介绍
简单实现网络快传

/** 
 * 接收文件服务 
 * @author admin_Hzw 
 * 
 */  
class Server extends Thread
{
    static public String pathdir;
    public void setPathdir(String s)//设置文件路径方法
    {
    pathdir=s;
    }
    public void run()//run方法
    {
ServerSocket server = null;
try
{
server = new ServerSocket(9999);
        while (!Thread.currentThread().isInterrupted())//如果线程没有中断
        {
            Socket socket = server.accept();//等待连接,一直阻塞
            byte[] inputByte = null;//定义输入字节数组
            int length = 0;//定义长度
            double sumL=0;//进度条参数
            long l;//文件长度
            DataInputStream dis = null;  
            FileOutputStream fos = null;  
            String filePath;
            try
            {  
                dis = new DataInputStream(socket.getInputStream());
                File f = new File(pathdir);//新建文件f
                if(!f.exists())
                {  
                    f.mkdir();
                }  
                filePath=pathdir "/" dis.readUTF();//得到文件路径
                l=dis.readLong();//获取文件大小
                fos = new FileOutputStream(new File(filePath));//文件输出流
                inputByte = new byte[1024];
                inframe in = new inframe();
                in.news.setText("正在接收文件...   " filePath);//进度条显示框
                while ((length = dis.read(inputByte, 0, inputByte.length)) > 0)
                { 
                sumL = length;
                in.value.setText("已传输:" (int)((sumL/(l*1024))*100) "%");
                in.jpb.setValue((int)((sumL/(l*1024))*100) 1);
                    fos.write(inputByte, 0, length);  
                    fos.flush();
                }  
                in.dispose();//关闭进度条框
            }
            finally//关闭流及socket
            {  
                if (fos != null)  
                    fos.close();  
                if (dis != null)  
                    dis.close();  
                if (socket != null)  
                    socket.close();   
            }
        }
}
        catch (Exception e)
        {  
        Thread.currentThread().interrupt();
            e.printStackTrace();
        }
    }
}