亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? ftp.java

?? JavaExplorer是一個獨立于平臺的瀏覽器
?? JAVA
字號:
/**  * File and FTP Explorer  * Copyright 2002  * BOESCH Vincent  *  * 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 javaexplorer.util.ftp;import objectxml.XMLContent;import objectxml.Xmlizable;import java.io.Serializable;import javaexplorer.util.ExplorerUtil;public class Ftp implements Serializable, Xmlizable {    private String _host;    private String _password;    private int _port;    private boolean _showInDiskList = false;    private String _title;    private boolean _usePassiveMode = false;    private String _user;    private String _group;    /**     *  Constructeur objet Ftp     */    public Ftp() {    }    /**     *@param  ftp  Description of the Parameter     *@return      Description of the Return     *      Value     */    public boolean equals(Ftp ftp) {        if (ftp == null) {            return false;        }        return _host.equalsIgnoreCase(ftp._host) && (_port == ftp._port) &&        _user.equals(ftp._user) && _password.equals(ftp._password);    }    /**     *  Gets the host attribute of the Ftp     *  object     *     *@return    The host value     */    public String getHost() {        return _host;    }    /**     *  Gets the password attribute of the     *  Ftp object     *     *@return    The password value     */    public String getPassword() {        return _password;    }    /**     *  Gets the port attribute of the Ftp     *  object     *     *@return    The port value     */    public int getPort() {        return _port;    }    /**     *  Gets the showInDiskList attribute of     *  the Ftp object     *     *@return    The showInDiskList value     */    public boolean getShowInDiskList() {        return _showInDiskList;    }    /**     *  Gets the title attribute of the Ftp     *  object     *     *@return    The title value     */    public String getTitle() {        return _title;    }    /**     *  Gets the usePassiveMode attribute of     *  the Ftp object     *     *@return    The usePassiveMode value     */    public boolean getUsePassiveMode() {        return _usePassiveMode;    }    /**     *  Gets the user attribute of the Ftp     *  object     *     *@return    The user value     */    public String getUser() {        return _user;    }    /**     *  Gets the group attribute of the Ftp     *  object     *     *@return    The user value     */    public String getGroup() {        return _group;    }    /**     *  Sets the group attribute of the Ftp     *  object     *     *@return    The user value     */    public void setGroup(String group) {        _group = group;    }    /**     *  Sets the host attribute of the Ftp     *  object     *     *@param  host  The new host value     */    public void setHost(String host) {        _host = host;    }    /**     *  Sets the password attribute of the     *  Ftp object     *     *@param  password  The new password value     */    public void setPassword(String password) {        _password = password;    }    /**     *  Sets the port attribute of the Ftp     *  object     *     *@param  port  The new port value     */    public void setPort(int port) {        _port = port;    }    /**     *  Sets the showInDiskList attribute of     *  the Ftp object     *     *@param  showInDiskList  The new showInDiskList     *      value     */    public void setShowInDiskList(boolean showInDiskList) {        _showInDiskList = showInDiskList;    }    /**     *  Sets the title attribute of the Ftp     *  object     *     *@param  title  The new title value     */    public void setTitle(String title) {        _title = title;    }    /**     *  Sets the usePassiveMode attribute of     *  the Ftp object     *     *@param  usePassiveMode  The new usePassiveMode     *      value     */    public void setUsePassiveMode(boolean usePassiveMode) {        _usePassiveMode = usePassiveMode;    }    /**     *  Sets the user attribute of the Ftp     *  object     *     *@param  user  The new user value     */    public void setUser(String user) {        _user = user;    }    /**     *  Retourne les informations permettant     *  de classer les infos du FTP     *     *@return    Description of the Return     *      Value     */    public String toHash() {        return _host + "**" + _port + "**" + _user;    }    /**     *@return    Description of the Return     *      Value     */    public String toString() {        return _title + " (" + _host + ":" + _port + ")";    }    public XMLContent writeXMLProperties() {        XMLContent root = new XMLContent("ClassName", getClass().getName());        //Pas de param鑤res constructeurs        //Propri閠閟        XMLContent content = new XMLContent("Properties");        content.add(new XMLContent("Title", this.getTitle()));        content.add(new XMLContent("Host", this.getHost()));        content.add(new XMLContent("Port", "" + this.getPort()));        content.add(new XMLContent("User", this.getUser()));        content.add(new XMLContent("Group", this.getGroup()));        content.add(new XMLContent("Password",                ExplorerUtil.encrypt(this.getPassword())));        content.add(new XMLContent("PassiveMode", "" +                this.getUsePassiveMode()));        content.add(new XMLContent("DiskList", "" + this.getShowInDiskList()));        root.add(content);        return root;    }    public void readXMLProperties(XMLContent content) {        if (content == null) {            return;        }        XMLContent prop = null;        prop = content.getChild("Title");        if (prop != null) {            this.setTitle(prop.getValue());        }        prop = content.getChild("Host");        if (prop != null) {            this.setHost(prop.getValue());        }        prop = content.getChild("Port");        if (prop != null) {            this.setPort(Integer.parseInt(prop.getValue()));        }        prop = content.getChild("User");        if (prop != null) {            this.setUser(prop.getValue());        }        prop = content.getChild("Group");        if (prop != null) {            this.setGroup(prop.getValue());        }        prop = content.getChild("Password");        if (prop != null) {            this.setPassword(ExplorerUtil.decrypt(prop.getValue()));        }        prop = content.getChild("PassiveMode");        if (prop != null) {            this.setUsePassiveMode(Boolean.valueOf(prop.getValue())                                          .booleanValue());        }        prop = content.getChild("DiskList");        if (prop != null) {            this.setShowInDiskList(Boolean.valueOf(prop.getValue())                                          .booleanValue());        }    }}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久精品国产第一区二区三区| 成人高清在线视频| 国产91精品一区二区麻豆亚洲| 色狠狠av一区二区三区| 久久九九久久九九| 天天综合网 天天综合色| 丁香激情综合国产| 欧美一区二区免费视频| 日韩理论电影院| 国产精品一区二区黑丝| 日韩一区二区三区在线观看 | 精品国产一区二区精华| 一区二区在线观看不卡| av中文字幕亚洲| 国产婷婷色一区二区三区在线| 麻豆精品新av中文字幕| 777奇米四色成人影色区| 亚洲国产人成综合网站| 色哟哟一区二区在线观看| 国产精品区一区二区三| 国产经典欧美精品| 2024国产精品| 精品影院一区二区久久久| 国产裸体歌舞团一区二区| 欧美午夜在线一二页| 亚洲女人****多毛耸耸8| 成人av综合在线| 中文字幕一区二区在线播放| 国内国产精品久久| 欧美精品一区二区久久久| 久久99在线观看| 欧美tk—视频vk| 久久99国产精品尤物| 欧美一区二区免费| 国产综合色视频| 国产亚洲欧美激情| www.欧美色图| 亚洲黄色小说网站| 欧美日韩亚洲综合一区| 五月天国产精品| 肉丝袜脚交视频一区二区| 日本二三区不卡| 天堂成人国产精品一区| 欧美老女人在线| 久久99久久99精品免视看婷婷| 欧美一级日韩一级| 国产一区二区视频在线播放| 久久日韩粉嫩一区二区三区| 国产成人一级电影| 成人免费一区二区三区视频 | 亚洲国产va精品久久久不卡综合| 欧美日韩在线观看一区二区| 日韩av不卡在线观看| 精品久久国产老人久久综合| 成人国产视频在线观看| 一区二区在线免费观看| 日韩欧美中文字幕公布| 国产91高潮流白浆在线麻豆| 亚洲精品日韩专区silk| 色综合久久88色综合天天6| 亚洲欧美色图小说| 欧美视频精品在线观看| 久久福利视频一区二区| 国产精品三级视频| 色94色欧美sute亚洲线路一久| 亚洲猫色日本管| 欧美日韩一区二区欧美激情| 麻豆91小视频| 国产精品欧美综合在线| 在线观看91精品国产麻豆| 国产精品综合一区二区| 亚洲综合网站在线观看| 久久精品一区二区三区四区| 在线亚洲一区二区| 国产精品一区二区视频| 舔着乳尖日韩一区| **性色生活片久久毛片| 欧美mv和日韩mv的网站| 欧美自拍丝袜亚洲| 粉嫩久久99精品久久久久久夜| www.欧美日韩国产在线| 国产精品久99| 日韩欧美aaaaaa| 欧美在线你懂的| heyzo一本久久综合| 丝袜美腿亚洲综合| 中文字幕一区二区三中文字幕| 日韩午夜在线观看视频| 在线观看视频91| 成人午夜在线播放| 国产乱码精品一区二区三区五月婷| 一区二区三区高清在线| 欧美高清一级片在线观看| 日韩欧美你懂的| 91丨九色porny丨蝌蚪| 国产一区二区精品在线观看| 亚洲国产综合在线| 亚洲黄色小说网站| 亚洲欧美色一区| 中文字幕一区二区三区四区不卡 | 国产酒店精品激情| 视频在线在亚洲| 亚洲欧美一区二区不卡| 国产精品久久99| 久久精品一区二区三区四区| 精品粉嫩超白一线天av| 日韩欧美色电影| 亚洲精品在线观| 日韩一级高清毛片| 精品久久免费看| 精品久久国产老人久久综合| 精品对白一区国产伦| 久久综合999| 国产欧美一区二区三区在线看蜜臀| 欧美日韩一区二区三区高清| 欧美男人的天堂一二区| 欧美日韩性生活| 91麻豆精品91久久久久同性| 欧美一区二区三区在线观看| 91精品国产免费久久综合| 在线综合+亚洲+欧美中文字幕| 91精品久久久久久久99蜜桃| 欧美乱妇20p| 精品少妇一区二区三区视频免付费| 欧美电影免费观看高清完整版在线观看 | 视频在线在亚洲| 国产在线看一区| 国产一区二区免费视频| 国产福利不卡视频| 不卡高清视频专区| 欧洲一区二区三区在线| 欧美久久免费观看| 欧美精品一区二区三区视频| 中文字幕精品在线不卡| 亚洲一区二区三区美女| 麻豆精品精品国产自在97香蕉 | 亚洲综合一区在线| 天堂成人国产精品一区| 国产乱码精品一品二品| 91丨九色丨蝌蚪丨老版| 欧美精品一二三| 国产亚洲自拍一区| 夜夜揉揉日日人人青青一国产精品| 亚洲18女电影在线观看| 国产一区二区91| 色八戒一区二区三区| 欧美一级在线观看| 国产精品三级久久久久三级| 午夜一区二区三区在线观看| 精品一区二区三区视频在线观看| 成人黄页在线观看| 欧美一区二区私人影院日本| 亚洲国产电影在线观看| 午夜影院久久久| av亚洲精华国产精华精华| 91精品中文字幕一区二区三区| 亚洲国产精品黑人久久久| 亚洲成人tv网| 顶级嫩模精品视频在线看| 欧美乱熟臀69xxxxxx| 国产精品久久久久影视| 麻豆精品视频在线| 在线观看视频91| 欧美国产精品一区| 日本免费新一区视频| 99国产精品久久久久久久久久| 678五月天丁香亚洲综合网| 国产精品丝袜一区| 久久电影网站中文字幕| 日韩一区二区精品葵司在线| 日韩一区二区三免费高清| 日本一区二区三区dvd视频在线| 亚洲成人资源网| 97久久超碰国产精品| 欧美va日韩va| 久久国产尿小便嘘嘘| 91在线码无精品| 久久亚洲一区二区三区明星换脸| 午夜久久久影院| 色8久久精品久久久久久蜜| 欧美高清在线一区二区| 国产一区二三区| 制服丝袜亚洲色图| 亚洲成人久久影院| 欧美色国产精品| 艳妇臀荡乳欲伦亚洲一区| 懂色一区二区三区免费观看| 欧美无乱码久久久免费午夜一区| 在线观看网站黄不卡| 欧美成人一级视频| 国产经典欧美精品| 天堂一区二区在线免费观看| 欧美日韩和欧美的一区二区| 岛国精品在线观看| 欧美一区二区三级| 一区二区三区四区高清精品免费观看| 国产福利一区二区三区视频在线 | 亚洲欧洲国产日本综合| 欧美日本国产视频| 91麻豆精东视频|