- class FileServer
- {
- public static void main(String[] args)throws Exception
- {
- ServerSocket ss = new ServerSocket(10007);
- Socket s = ss.accept();
- InputStream in = s.getInputStream();
- int count = 1;
- String ip = s.getInetAddress().getHostAddress();
- File file = new File(ip+"("+(count)+")"+".jpg");//这边限定了文件上传的类型,怎么改能变成没有限制的?
- <blockquote>if(file.exists())
复制代码 这是毕老师上传图片到服务端的例子,这边限定了只能上次JPG图片,我想知道,怎么改成通用的,可以上传任何类型的文件! |