Here you can find the source of getDesktopPath()
public static String getDesktopPath()
//package com.java2s; //License from project: Apache License import java.io.File; public class Main { public static String getDesktopPath() { return System.getProperty("user.home") + File.separator + "Desktop"; }//from w ww. ja v a2s. com }