zsh_root
2024-01-02 7b595546af704983dbafcd0d385c8768ddacefc2
1
2
3
4
5
6
7
8
9
10
11
12
13
package Method;
import java.io.File;
import javax.swing.filechooser.FileSystemView;
/**´ËÀàÓÃÓÚ»ñÈ¡×ÀÃæµÄ·¾¶*/
public class GetDeskPath {
    //»ñµÃ×ÀÃæµÄ·¾¶
    static FileSystemView fsv= FileSystemView.getFileSystemView();  //»ñµÃ×ÀÃæÂ·¾¶ 
    static File paht=fsv.getHomeDirectory();
    public static File path() {
        return paht;        
    }
 
}