我在保存文件时遇到了问题,因为我已经搜索过,我写的很好,除了一件事,文件没有真正创建。缺少什么?
Button btnExport = new Button(composite_1, SWT.NONE);
btnExport.addSelectionListener(new SelectionAdapter() {
@Override
public void widgetSelected(SelectionEvent e) {
FileDialog fileSave = new FileDialog(pmComp, SWT.SAVE);
fileSave.setFilterNames(new String[] {"CSV"});
fileSave.setFilterExtensions(new String[] {"*.csv"});
fileSave.setFilterPath("c:\\"); // Windows path
fileSave.setFileName("your_file_name.csv");
fileSave.open();
System.out.println("File Saved as: " + fileSave.getFileName());
}
});
btnExport.setBounds(246, 56, 75, 40);
btnExport.setText("Export");
牛魔王的故事
斯蒂芬大帝
幕布斯7119047
相关分类