2021-01-25

模拟用户上传头像(I/O流实例,异常抛出实例)

1,新建方法getPath(),获取用户头像所在的路径,对头像图片格式进行判断(.jpg .png),对路径的合法性进行判断。

public static File getPath(){
		//提示用户输入正确路径
		Scanner sc =new Scanner(System.in);
		while(true){
			System.out.println("请输入上传图片的路径:");
	        String path=sc.nextLine();
	        //判断是否为图片格式
	        if(!path.endsWith(".jpg")&&!path.endsWith(".png")){
	        	System.out.println("您输入的不是图片,请输入图片!");
	        	continue;
	        }
	       File file=new File(path);
	       //判断文件是否存在,判断文件路径是否正确
	       if(!file.exists()&&!file.isFile()){
	    	   
	    	   System.out.println("您输入的路径不存在或者文件不存在请重新输入!");
	    	   
	       }
	       else{
	    	   return file;
	    	  // System.out.println("头像上传成功!"+path);
	       }
			
		}
		
		
		
		
	}

2,新建方法isExists(),将路径实例化FIle对象,判断头像所在的文件是否已经存在如果存在,则上传失败,如果不存在则上传成功。

public static  boolean isExists(String path){
			File file=new File("D://c");
		String [] list1=file.list();
		for(String list:list1){
			if(list.equals(path)){
				return true;
			}
		}
		
		return false;
		}

3,新建方法upLoad(),模拟用户上传头像(将头像从源文件传输到目的文件)

public static void upLoad(File path) throws IOException{
		BufferedInputStream bi=new BufferedInputStream(new FileInputStream(path));
		BufferedOutputStream bo=new BufferedOutputStream(new FileOutputStream("D://c/"+path.getName()));
		int ch;
		while((ch=bi.read())!=-1){
			bo.write(ch);
			
		}
		bi.close();
		bo.close();
		
	}

4,完整代码

import java.io.BufferedInputStream;
import java.io.BufferedOutputStream;
import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.IOException;
import java.io.InputStream;
import java.util.Scanner;

//模拟用户上传头像
public class UpLoad {

	/**
	 * @param args
	 * @throws IOException 
	 */
	public static void main(String[] args) throws IOException {
		// TODO Auto-generated method stub
		  File path=getPath();
		  System.out.println("头像上传成功!"+path);
		boolean flag=  isExists(path.getName());
		if(flag){
			System.out.println("头像已存在,头像上传失败!");
		}
		else{
			upLoad(path);
			System.out.println("头像不存在,文件上传成功!");
		}
      
	}
	public static File getPath(){
		//提示用户输入正确路径
		Scanner sc =new Scanner(System.in);
		while(true){
			System.out.println("请输入上传图片的路径:");
	        String path=sc.nextLine();
	        //判断是否为图片格式
	        if(!path.endsWith(".jpg")&&!path.endsWith(".png")){
	        	System.out.println("您输入的不是图片,请输入图片!");
	        	continue;
	        }
	       File file=new File(path);
	       //判断文件是否存在,判断文件路径是否正确
	       if(!file.exists()&&!file.isFile()){
	    	   
	    	   System.out.println("您输入的路径不存在或者文件不存在请重新输入!");
	    	   
	       }
	       else{
	    	   return file;
	    	  // System.out.println("头像上传成功!"+path);
	       }
			
		}
		
		
		
		
	}/*
		 * 图像是否已经存在
		 * 存在:上传失败
		 * 不存在:上传成功
		 * 
		 */
	public static  boolean isExists(String path){
			File file=new File("D://c");
		String [] list1=file.list();
		for(String list:list1){
			if(list.equals(path)){
				return true;
			}
		}
		
		return false;
		}
	public static void upLoad(File path) throws IOException{
		BufferedInputStream bi=new BufferedInputStream(new FileInputStream(path));
		BufferedOutputStream bo=new BufferedOutputStream(new FileOutputStream("D://c/"+path.getName()));
		int ch;
		while((ch=bi.read())!=-1){
			bo.write(ch);
			
		}
		bi.close();
		bo.close();
		
	}

}

5,测试结果:
在这里插入图片描述
在这里插入图片描述
文件上传成功在这里插入图片描述
6,注意事项:

BufferedOutputStream bo=new BufferedOutputStream(new
FileOutputStream**(“D://c/”+path.getName()));**
文件夹后面的斜杠不能省略否则文件会显示已经成功完成,但是文件夹中却没有图片

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
使用python中的pymsql完成如下:表结构与数据创建 1. 建立 `users` 表和 `orders` 表。 `users` 表有用户ID、用户名、年龄字段,(id,name,age) `orders` 表有订单ID、订单日期、订单金额,用户id字段。(id,order_date,amount,user_id) 2 两表的id作为主键,`orders` 表用户id为users的外键 3 插入数据 `users` (1, '张三', 18), (2, '李四', 20), (3, '王五', 22), (4, '赵六', 25), (5, '钱七', 28); `orders` (1, '2021-09-01', 500, 1), (2, '2021-09-02', 1000, 2), (3, '2021-09-03', 600, 3), (4, '2021-09-04', 800, 4), (5, '2021-09-05', 1500, 5), (6, '2021-09-06', 1200, 3), (7, '2021-09-07', 2000, 1), (8, '2021-09-08', 300, 2), (9, '2021-09-09', 700, 5), (10, '2021-09-10', 900, 4); 查询语句 1. 查询订单总金额 2. 查询所有用户的平均年龄,并将结果四舍五入保留两位小数。 3. 查询订单总数最多的用户的姓名和订单总数。 4. 查询所有不重复的年龄。 5. 查询订单日期在2021年9月1日至9月4日之间的订单总金额。 6. 查询年龄不大于25岁的用户的订单数量,并按照降序排序。 7. 查询订单总金额排名前3的用户的姓名和订单总金额。 8. 查询订单总金额最大的用户的姓名和订单总金额。 9. 查询订单总金额最小的用户的姓名和订单总金额。 10. 查询所有名字中含有“李”的用户,按照名字升序排序。 11. 查询所有年龄大于20岁的用户,按照年龄降序排序,并只显示前5条记录。 12. 查询每个用户的订单数量和订单总金额,并按照总金额降序排序。
06-03

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值