📄 musicutil.java
字号:
/*
* MusicUtil.java
*
* Created on 2008年3月29日, 下午2:58
*
* To change this template, choose Tools | Template Manager
* and open the template in the editor.
*/
package com.gjun.huxiaoming;
import java.io.File;
import javax.swing.JFileChooser;
/**
*
* @author Administrator
*/
public class MusicUtil {
/** Creates a new instance of MusicUtil */
public MusicUtil() {
}
public static File getFile(File file)
{
JFileChooser fc = new JFileChooser(file); //显示文件
if (fc.showOpenDialog(null) == JFileChooser.APPROVE_OPTION) //选择确认后返回
{
file = fc.getSelectedFile();
}
return file;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -