⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 nfsconnection.java

📁 一个JAVA做的FTP软件,带源码的,可以很好的进行二次开发,,并带有详细说明文件的
💻 JAVA
📖 第 1 页 / 共 2 页
字号:
/* * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA. */package net.sf.jftp.net;import com.sun.nfs.*;import com.sun.xfile.*;import net.sf.jftp.config.Settings;import net.sf.jftp.util.Log;import net.sf.jftp.util.StringUtils;import java.io.*;import java.net.*;import java.util.*;public class NfsConnection implements BasicConnection{    public static int buffer = 128000;    private String url = "";    private String host = "";    private String path = "";    private String pwd = "";    private Vector listeners = new Vector();    private String[] files;    private String[] size = new String[0];    private int[] perms = null;    //private NfsHandler handler = new NfsHandler();    private String baseFile;    private int fileCount;    private boolean isDirUpload = false;    private boolean shortProgress = false;    private boolean dummy = false;    public NfsConnection(String url)    {        this.url = url;        host = url.substring(6);        int x = host.indexOf("/");        if(x >= 0)        {            host = host.substring(0, x);        }        Log.out("nfs host is: " + host);    }    public boolean login(String user, String pass)    {        Log.out("nfs login called: " + url);        try        {            XFile xf = new XFile(url);            if(xf.exists())            {                Log.out("nfs url ok");            }            else            {                Log.out("WARNING: nfs url not found, cennection will fail!");            }            com.sun.nfs.XFileExtensionAccessor nfsx = (com.sun.nfs.XFileExtensionAccessor) xf.getExtensionAccessor();            //Log.out("nfs extension accessor: " + nfsx);            if(!nfsx.loginPCNFSD(host, user, pass))            {                Log.out("login failed!");                return false;            }            else            {                Log.debug("Login successful...");            }        }        catch(Exception e)        {            e.printStackTrace();        }        return true;    }    public String[] getExports() throws Exception    {        XFile xf = new XFile(url);        com.sun.nfs.XFileExtensionAccessor nfsx = (com.sun.nfs.XFileExtensionAccessor) xf.getExtensionAccessor();        String[] tmp = nfsx.getExports();        if(tmp == null)        {            return new String[0];        }        for(int i = 0; i < tmp.length; i++)        {            Log.out("nfs export found: " + tmp[i]);        }        return tmp;    }    public int removeFileOrDir(String file)    {        try        {            String tmp = toNFS(file);            XFile f = new XFile(tmp);            if(!f.getAbsolutePath().equals(f.getCanonicalPath()))            {                Log.debug("WARNING: Skipping symlink, remove failed.");                Log.debug("This is necessary to prevent possible data loss when removing those symlinks.");                return -1;            }            if(f.exists() && f.isDirectory())            {                cleanLocalDir(tmp);            }            //System.out.println(tmp);            if(!f.delete())            {                return -1;            }            else            {                return 1;            }        }        catch(IOException ex)        {            Log.debug("Error: " + ex.toString());            ex.printStackTrace();        }        return -1;    }    private void cleanLocalDir(String dir)    {        dir = toNFS(dir);        if(dir.endsWith("\\"))        {            Log.out("need to fix \\-problem!!!");        }        if(!dir.endsWith("/"))        {            dir = dir + "/";        }        //String remoteDir = StringUtils.removeStart(dir,path);        //System.out.println(">>> " + dir);        XFile f2 = new XFile(dir);        String[] tmp = f2.list();        if(tmp == null)        {            return;        }        for(int i = 0; i < tmp.length; i++)        {            XFile f3 = new XFile(dir + tmp[i]);            if(f3.isDirectory())            {                //System.out.println(dir);                cleanLocalDir(dir + tmp[i]);                f3.delete();            }            else            {                //System.out.println(dir+tmp[i]);                f3.delete();            }        }    }    public void sendRawCommand(String cmd)    {    }    public void disconnect()    {    }    public boolean isConnected()    {        return true;    }    public String getPWD()    {        String tmp = toNFS(pwd);        if(!tmp.endsWith("/"))        {            tmp = tmp + "/";        }        return tmp;    }    public boolean cdup()    {        String tmp = pwd;        if(pwd.endsWith("/") && !pwd.equals("nfs://"))        {            tmp = pwd.substring(0, pwd.lastIndexOf("/"));        }        return chdir(tmp.substring(0, tmp.lastIndexOf("/") + 1));    }    public boolean mkdir(String dirName)    {        if(!dirName.endsWith("/"))        {            dirName = dirName + "/";        }        dirName = toNFS(dirName);        File f = new File(dirName);        boolean x = f.mkdir();        fireDirectoryUpdate();        return x;    }    public void list(String outfile) throws IOException    {    }    public boolean chdir(String p)    {        return chdir(p, true);    }    public boolean chdir(String p, boolean refresh)    {        if(p.endsWith(".."))        {            return cdup();        }        String tmp = toNFS(p);        if(!tmp.endsWith("/"))        {            tmp = tmp + "/";        }        if(check(tmp) < 3)        {            return false;        }        pwd = tmp;        if(refresh)        {            fireDirectoryUpdate();        }        return true;    }    private int check(String url)    {        int x = 0;        for(int j = 0; j < url.length(); j++)        {            if(url.charAt(j) == '/')            {                x++;            }        }        return x;    }    public boolean chdirNoRefresh(String p)    {        /*                String p2 = toNFS(p);            if(p2 == null) return false;            pwd = p2;            return true;        */        return chdir(p, false);    }    public String getLocalPath()    {        //System.out.println("local: " + path);        return path;    }    private String toNFS(String f)    {        String file;        if(f.lastIndexOf("nfs://") > 0)        {            f = f.substring(f.lastIndexOf("nfs://"));        }        if(f.startsWith("nfs://"))        {            file = f;        }        else        {            file = getPWD() + f;        }        file = file.replace('\\', '/');        Log.out("nfs url: " + file);        return file;    }    public boolean setLocalPath(String p)    {        if(!p.startsWith("/") && !p.startsWith(":", 1))        {            p = path + p;        }        File f = new File(p);        if(f.exists())        {            try            {                path = f.getCanonicalPath();                path = path.replace('\\', '/');                if(!path.endsWith("/"))                {                    path = path + "/";                }                //System.out.println("2:"+path+":"+getPWD());            }            catch(IOException ex)            {                Log.debug("Error: can not get pathname (local)!");                return false;            }        }        else        {            Log.debug("(local) No such path: \"" + p + "\"");            return false;        }        return true;    }    public String[] sortLs(String file)    {        String dir = getPWD();        if(check(toNFS(dir)) == 3)        {            try            {                files = getExports();            }            catch(Exception ex)            {                Log.debug("Can not list exports:" + ex.toString());                ex.printStackTrace();            }        }        else        {            XFile f = new XFile(dir);            files = f.list();        }        if(files == null)        {            return new String[0];        }        size = new String[files.length];        perms = new int[files.length];        int accessible = 0;        for(int i = 0; i < files.length; i++)        {            XFile f2 = new XFile(dir + files[i]);            if(f2.isDirectory() && !files[i].endsWith("/"))            {                files[i] = files[i] + "/";            }            size[i] = "" + f2.length();            if(f2.canWrite())            {                accessible = FtpConnection.W;            }            else if(f2.canRead())

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -