需要上传的文件分为两种:
- 本地文件上传:只需要按照OSS中上传数据的文档直接编写即可
- 网上数据上传:如果上传的数据来自网络则需要将其下载到本地,
public String Upload(String word,String path) throws FileNotFoundException {
// 判断是否有文件
File file=new File(path);
if (word.isEmpty()) {
return null;
}
// 图片的新名字
String fileName=word+IdWorker.getIdStr()+ file.toString().substring(file.toString().lastIndexOf('.'));
// 服务器保存位置
File newFile=file;
if(FILE_FORMAT.contains(path.substring(path.lastIndexOf('.') + 1).toUpperCase())) {
try {
// 判断上传地址是否为网络
if (!file.exists()) {
newFile = new File("E:\\" + fileName);
URL url = new URL(path);
DataInputStream dis = new DataInputStream(url.openStream());
OutputStream os = new FileO