文件可上传至阿里云OSS中,也可以从OSS中下载文件。
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

17 lines
355 B

package com.fr.plugin.file.submit.oss.ui.tools;
import javax.swing.*;
import java.util.List;
public class RewriteWorker extends SwingWorker<Void, Void> {
@Override
protected Void doInBackground() throws Exception {
return null;
}
@Override
protected void process(List<Void> chunks) {
super.process(chunks);
}
}