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;
| }
|
| }
|
|