金蝶EAS,ListUI或EditUI弹出文件选择窗口,获取文件路径
业务场景:需要代码实现数据导入、附件添加等功能时,需要弹出文件选择窗口,并获取所选取文件的路径。
/**
* 文件选择器,返回文件路径,用于前端
* @param comp 父窗口
* @return 文件路径
*
*/
public static String chooser(Component comp){
String filePath = null; //文件路径
JFileChooser chooser = new JFileChooser();
chooser.showOpenDialog(comp); //文件选择窗口
if(chooser.getSelectedFile() == null){
SysUtil.abort();
}
filePath = chooser.getSelectedFile().getPath(); //文件路径
return filePath;
}
/**
* 文件选择器,校验文件格式并返回文件路径,用于前端
* @param comp 父窗口
* @param format 文件格式(e.g .xls)
* @return 文件路径
*
*/
public static String chooser(Component comp, String format){
String filePath = null; //文件路径
JFileChooser chooser = new JFileChooser();
chooser.showOpenDialog(comp); //文件选择窗口
if(chooser.getSelectedFile() == null){
SysUtil.abort();
}
String fileName = chooser.getSelectedFile().getName(); //获取文件名
if(!fileName.endsWith(format)){
MsgBox.showWarning(comp, "文件格式错误!应为" + format + "格式。");
SysUtil.abort();
}
filePath = chooser.getSelectedFile().getPath(); //文件路径
return filePath;
}
用于GUI客户端前端页面ListUI或EditUI。
/**
* 文件选择器,返回文件路径,用于前端
* @param comp 父窗口
* @return 文件路径
*
*/
public static String chooser(Component comp){
String filePath = null; //文件路径
JFileChooser chooser = new JFileChooser();
chooser.showOpenDialog(comp); //文件选择窗口
if(chooser.getSelectedFile() == null){
SysUtil.abort();
}
filePath = chooser.getSelectedFile().getPath(); //文件路径
return filePath;
}
/**
* 文件选择器,校验文件格式并返回文件路径,用于前端
* @param comp 父窗口
* @param format 文件格式(e.g .xls)
* @return 文件路径
*
*/
public static String chooser(Component comp, String format){
String filePath = null; //文件路径
JFileChooser chooser = new JFileChooser();
chooser.showOpenDialog(comp); //文件选择窗口
if(chooser.getSelectedFile() == null){
SysUtil.abort();
}
String fileName = chooser.getSelectedFile().getName(); //获取文件名
if(!fileName.endsWith(format)){
MsgBox.showWarning(comp, "文件格式错误!应为" + format + "格式。");
SysUtil.abort();
}
filePath = chooser.getSelectedFile().getPath(); //文件路径
return filePath;
}
用于GUI客户端前端页面ListUI或EditUI。
金蝶EAS,ListUI或EditUI弹出文件选择窗口,获取文件路径
业务场景:需要代码实现数据导入、附件添加等功能时,需要弹出文件选择窗口,并获取所选取文件的路径。 /** * 文件选择器,返回...
点击下载文档
本文2024-09-16 22:38:02发表“eas cloud知识”栏目。
本文链接:https://wenku.my7c.com/article/kingdee-eas-49366.html
您需要登录后才可以发表评论, 登录登录 或者 注册
最新文档
热门文章