class FileTransThread implements Runnable
{
private Socket s;
FileTransThread(Socket s)
{
this.s=s;
}
public void run()
{
int count=1;
String ip=s.getInetAddress().getHostAddress();
try
{
System.out.println(ip+".....connection");
InputStream in=s.getInputStream();
File file=new File(ip+"("+(count)+")"+".jpg");
//上传文件时我们在服务端一般都带上已知的文件扩展名,也就是说我们在客户端上传之前,服务端就已经知道了你要上传什么格式的文件,实际生活中这种上传的方法交互性是很差的,而却服务端应该能接受各种格式的文件,我想问的是怎样能实现将客户端上传文件的扩展名也传递给服务端,即服务端能获取到客户端上传文件的扩展名???请高手指教!谢谢!
while (file.exists())
file=new File(ip+"("+(count++)+")"+".jpg");
FileOutputStream fos=new FileOutputStream(file);
byte[]buf=new byte[1024];
int len=0;
while ((len=in.read(buf))!=-1)
{
fos.write(buf,0,len);
}
OutputStream out=s.getOutputStream();
out.write("上传成功".getBytes());
fos.close();
s.close();
}
catch (Exception e)
{
throw new RuntimeException(ip+"上传失败");
}
}
}
|
|