📄 getfile.java
字号:
import java.net.*;
import java.io.*;
public class GetFile extends Thread{
byte byteBuffer[]= new byte[1024];
Socket tempSocket;
RandomAccessFile inFile;
InputStream inSocket;
public static void main(String args[]){
GetFile gf=new GetFile();
gf.start();
System.out.println("get it...");
}
public GetFile(){
try{
inFile=new RandomAccessFile("test/33.zip","rw");
tempSocket = new Socket("127.0.0.1",9090);
inSocket= tempSocket.getInputStream();
}catch(Exception e){}
}
public void run(){
int amount;
try{
while((amount =inSocket.read(byteBuffer) )!= -1){
inFile.write(byteBuffer, 0, amount);
}
inSocket.close();
System.out.println("Get OK");
inFile.close();
tempSocket.close();
}catch(IOException e){}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -